tastypie 身份验证/自定义响应

发布于 2024-12-04 18:50:15 字数 186 浏览 2 评论 0原文

是否有在 tastypie 中使用 APIKey 身份验证的示例?提供的示例并未真正详细说明其工作原理。

此外,我还在浏览食谱,试图找到在帖子上返回自定义消息的钩子。

例如,有人发帖尝试创建用户,但该用户已经存在。在我的 Hydro_user(self, bundle) 中:我相信我会进行检查,但是我如何返回有用的错误消息?

Are there any examples of using the APIKey authentication in tastypie. The example provided doesn't really go into detail on how it works.

Also I was looking through the cookbook trying to find where there is a hook for returning custom messages on a post.

For example someone does a post to try to create a user but the user already exists. In my hydrate_user(self, bundle): I believe i would do the check but how would i return a error message that is useful?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

演出会有结束 2024-12-11 18:50:15

你可以这样做:

from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpBadRequest

if test_fails:
    raise ImmediateHttpResponse(HttpBadRequest("User already exists"))

you can do that this way:

from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpBadRequest

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