从 Facebook API 检索我朋友的签到

发布于 2024-11-09 19:05:20 字数 68 浏览 0 评论 0原文

有没有办法使用 Facebook API 检索我朋友的签到信息? 我要开发一个 iPhone 应用程序,我需要纬度和经度。

Is there any way to retrieve the check in of my friends using the API for Facebook?
I am going to develop an iPhone app and I need latitude and longitude.

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

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

发布评论

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

评论(2

羁绊已千年 2024-11-16 19:05:20

是的,这在 Facebook 上很容易实现。查看 Checkin api 文档,该文档将为您提供用户和他们的朋友已签入,包括纬度和经度。您只需提示用户授予 user_checkins 权限即可。也可以使用他们的 FQL 语言进行查询,请查看 签入 表。最新的 Facebook iOS SDK 和示例将帮助您快速开始制作 Graph API。

Yes this is pretty easy to implement with Facebook. Check out the Checkin api documentation which which will give you the places the user and their friends have checked into, including latitude and longitude. You just need to prompt the user for user_checkins permission. This can also be queried using their FQL language, look at the checkin table. The latest Facebook iOS SDK & sample will help you get started making Graph API's quickly.

娜些时光,永不杰束 2024-11-16 19:05:20

您好,

是的,您可以检索朋友的签到,

-(void)getRecentCheckins {

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"checkin",@"type",nil];



[facebook requestWithGraphPath:@"search" andParams: params andDelegate:self];

 }

这将根据请求 didload 方法提供您的朋友最近签到的列表。

希望这有帮助 - 如需指导,请使用此链接:

http://tylerwhitedesign.com/how-to-check-in-using-the-facebook-ios-sdk-and-graph-api

Hii,

yes, you can retrieve checkins of your friends

-(void)getRecentCheckins {

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"checkin",@"type",nil];



[facebook requestWithGraphPath:@"search" andParams: params andDelegate:self];

 }

this will give a list of recent checkins made by your friends at request didload method.

Hope this Helps - for guidance use this Link:

http://tylerwhitedesign.com/how-to-check-in-using-the-facebook-ios-sdk-and-graph-api

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