如何调试 django-piston 应用程序?

发布于 2024-11-01 04:00:58 字数 180 浏览 5 评论 0原文

当我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

[旋木] 2024-11-08 04:00:58

我通常通过以下方式调试 Piston 应用程序:

  1. 将我的处理程序设置为使用基本身份验证,即使我通常使用其他身份验证。
  2. 使用 curl 发出请求
  3. 使用 pdb (或 ipdb) 在我的处理程序中设置断点 if想要的。

您可以有条件地更改为BasicAuthentication,如下所示:

auth = {'authentication': WhateverYouAreUsingForAuthentication(realm="YourSite")}

if getattr(settings, "API_DEBUG", None):
    from piston.authentication import HttpBasicAuthentication
    auth = {'authentication': HttpBasicAuthentication(realm="Spling")}

some_handler = Resource(SomeHandler, **auth)

要使用curl传递用户名和密码,请使用-u选项:

curl -u username:password http://localhost:8000/api/some/endpoint/

因此,在本地设置模块中,只需设置API_DEBUG=True每当您想使用基本身份验证时。

I usually debug Piston apps by:

  1. Setting my handlers to use Basic Authentication, even if I'm normally using something else.
  2. Use curl to make requests
  3. Use pdb (or ipdb) to set a breakpoint in my handler if desired.

You can conditionally change to BasicAuthentication like this:

auth = {'authentication': WhateverYouAreUsingForAuthentication(realm="YourSite")}

if getattr(settings, "API_DEBUG", None):
    from piston.authentication import HttpBasicAuthentication
    auth = {'authentication': HttpBasicAuthentication(realm="Spling")}

some_handler = Resource(SomeHandler, **auth)

To pass a username and password using curl, use the -u option:

curl -u username:password http://localhost:8000/api/some/endpoint/

So in your local settings module, just set API_DEBUG=True whenever you want to use basic auth.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文