在 iPhone 上使用 facebook 进行身份验证

发布于 2024-12-10 16:16:25 字数 184 浏览 0 评论 0原文

我想在我的应用程序中向 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 技术交流群。

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

发布评论

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

评论(3

何时共饮酒 2024-12-17 16:16:25

看看 http://developers.facebook.com/docs/authentication/

方法您将在 Facebook.m 中调用。下面是一个示例:

[self.facebook authorizeWithPermissions:somePermissions delegate:self];

调用 authorizeWithPermissions 后,您将收到一些委托回调:

/**
 * Called when the user has logged in successfully.
 */
- (void)fbDidLogin 
{
   // Do something with self.facebook.expirationDate and self.facebook.accessToken 
}

使用 self.facebook.expirationDateself.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:

[self.facebook authorizeWithPermissions:somePermissions delegate:self];

Once you've called the authorizeWithPermissions, you will receive some delegate call backs:

/**
 * Called when the user has logged in successfully.
 */
- (void)fbDidLogin 
{
   // Do something with self.facebook.expirationDate and self.facebook.accessToken 
}

With self.facebook.expirationDate and self.facebook.accessToken, you might wish to save them in the NSUserDefaults so the user doesn't have to reauthorise every time.

转角预定愛 2024-12-17 16:16:25

使用 OAuth 进行身份验证和 facebook 的图形 api..

use OAuth for authentication and graph api of facebook..

南城旧梦 2024-12-17 16:16:25

使用 Facebook Graph API.. 阅读开发人员文档

Use Facebook Graph API.. read developers documentation

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