post_authorize_redirect_url 的 Facebook 图形版本

发布于 2024-10-20 18:56:18 字数 269 浏览 1 评论 0原文

我正在开发一个画布应用程序并使用 Graph api。 REST api 中曾经有一个 post_authorize_redirect_url,用于在某人首次授权您的应用程序后登陆该人(请参阅此处 http://developers.facebook.com/docs/appproperties/)。当前的画布应用程序中是否有类似的概念?

谢谢

I'm working on a canvas app and am using the Graph api. There used to be in the REST api a post_authorize_redirect_url for a place to land someone after they first authorize your app (see here for http://developers.facebook.com/docs/appproperties/ ). Is there an analagous concept in current canvas app?

thx

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

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

发布评论

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

评论(2

十年九夏 2024-10-27 18:56:18

对于 Graph API,您可以使用redirect_uri 参数。例如:

http://www.facebook.com/dialog/oauth/ ?response_type=code&redirect_uri={URL}&scope=email&client_id=12345

详细信息请参见:http://developers.facebook.com/docs/authentication/

With the Graph API, you use the redirect_uri parameter. For example:

http://www.facebook.com/dialog/oauth/?response_type=code&redirect_uri={URL}&scope=email&client_id=12345

Details available here: http://developers.facebook.com/docs/authentication/

吃兔兔 2024-10-27 18:56:18

没有(不再)了。如果用户刚刚授权或者是回访用户,您需要跟踪自己。只需检查您的数据库中是否有允许存储的用户 ID。当然,您需要在应用程序的某个时刻存储该 id。

There is not (anymore). You'll need to track yourself if the user has just authorized or is a returning user. Just check your database for the user id, which you are allowed to store. Of course you'll need to store the id at some point of your app.

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