post_authorize_redirect_url 的 Facebook 图形版本
我正在开发一个画布应用程序并使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 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/
没有(不再)了。如果用户刚刚授权或者是回访用户,您需要跟踪自己。只需检查您的数据库中是否有允许存储的用户 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.