如何调试 django-piston 应用程序?
当我使用 python manage.py runserver 命令在本地运行时,我的活塞应用程序工作正常,但返回
urllib2.HTTPError:HTTP 错误 403: 禁止
apache 下 。如何调试 django-piston 应用程序?
My piston application works correctly when I run it locally with python manage.py runserver command but returns
urllib2.HTTPError: HTTP Error 403:
FORBIDDEN
under apache. How can I debug django-piston application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常通过以下方式调试 Piston 应用程序:
您可以有条件地更改为BasicAuthentication,如下所示:
要使用curl传递用户名和密码,请使用
-u
选项:因此,在本地设置模块中,只需设置
API_DEBUG=True
每当您想使用基本身份验证时。I usually debug Piston apps by:
You can conditionally change to BasicAuthentication like this:
To pass a username and password using curl, use the
-u
option:So in your local settings module, just set
API_DEBUG=True
whenever you want to use basic auth.