在 iPhone 上使用 facebook 进行身份验证
我想在我的应用程序中向 Facebook 进行身份验证,然后以编程方式在别人的墙上发布我已经开始使用我的应用程序。这可以在 iPhone 上实现吗?是否有适用于 iPhone 的中央身份验证模块,我可以从中使用令牌访问 facebook?我不希望新用户需要在我的应用程序中输入凭据,然后再次在 Facebook 上输入凭据。
谢谢,马切伊
I want to authenticate within my app to facebook and after that post programatically on someone elses wall that I have started using my app. Is that possible to do on iPhone? Is there any central authentication module for iphone from which I can use a token to access facebook? I don't want new users to need to type in credentials into my app and after that again have to type in credentials to facebook.
Thanks, Maciej
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 http://developers.facebook.com/docs/authentication/
方法您将在
Facebook.m
中调用。下面是一个示例:调用
authorizeWithPermissions
后,您将收到一些委托回调:使用
self.facebook.expirationDate
和self.facebook.accessToken< /code>,您可能希望将它们保存在
NSUserDefaults
中,这样用户就不必每次都重新授权。Have a look at http://developers.facebook.com/docs/authentication/
The method you'll call is in
Facebook.m
. Here's an example:Once you've called the
authorizeWithPermissions
, you will receive some delegate call backs:With
self.facebook.expirationDate
andself.facebook.accessToken
, you might wish to save them in theNSUserDefaults
so the user doesn't have to reauthorise every time.使用 OAuth 进行身份验证和 facebook 的图形 api..
use OAuth for authentication and graph api of facebook..
使用 Facebook Graph API.. 阅读开发人员文档
Use Facebook Graph API.. read developers documentation