使用 Rails 3 应用程序进行 ios json 身份验证

发布于 2024-11-01 21:20:17 字数 94 浏览 0 评论 0原文

构建 ios 应用程序时,通过 json 对 Rails 应用程序进行身份验证的最佳方法是什么?我看过有关在 URL 中使用令牌的帖子以及其他有关使用 cookie 的帖子。

when building a ios app, what's the best way to authenticate with a rails app through json? i've seen posts about using tokens in the URL and others about using cookies.

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

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

发布评论

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

评论(1

负佳期 2024-11-08 21:20:17

我使用 Authlogic - 通常我编写了一个 mobile_signin 操作,它返回用户 api_token (由 Authlogic 创建),然后将其存储在 ios 上。对于将来的所有请求,您可以将该令牌传递给 Rails 应用程序,Authlogic 会理解它并将其用作身份验证,当然就像您要在 Web 应用程序中使用它一样,令牌仅适用于 1 个请求,因此您必须在每个请求中发送该令牌,但这是标准程序。

I use Authlogic -- Typically I wrote a mobile_signin action which returns the users api_token (created by Authlogic) and then store that on ios. For all future requests you can pass that token to the rails app, and Authlogic understands it and uses it as authentication, of course just as if you were going to use it in the web app, a token is only good for 1 request, so you'd have to send that token with each request, but this is standard procedure.

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