Questions tagged «facebook-ios-sdk»

7
Facebook Graph API v2.0 +-/ me / friends返回空,或者仅返回也使用我的应用程序的朋友
我正在尝试通过Graph API v2.0获取我的朋友的姓名和ID,但是数据返回空: { "data": [ ] } 当我使用v1.0时,以下请求一切正常: FBRequest* friendsRequest = [FBRequest requestForMyFriends]; [friendsRequest startWithCompletionHandler: ^(FBRequestConnection *connection, NSDictionary* result, NSError *error) { NSArray* friends = [result objectForKey:@"data"]; NSLog(@"Found: %i friends", friends.count); for (NSDictionary<FBGraphUser>* friend in friends) { NSLog(@"I have a friend named %@ with id %@", friend.name, friend.id); } …

6
如何在iOS 10上使用Facebook iOS SDK
我正在尝试使用Xcode 8使用Swift 3通过Facebook登录构建应用程序。当我切换回iOS Simulator 9.3时,它可以工作。在iOS 10中,我收到此错误: ""fbauth2:/" The operation couldn’t be completed. (OSStatus error -10814.)" 和 Optional(Error Domain=com.facebook.sdk.login Code=308 "(null)") 有人对此有解决方案吗? 注1: 调试后,此问题是FBSDK无法更新expect_challange。SecItemUpdate内部功能security.framework不起作用。这是IOS 10的问题

7
本机iOS应用程序:我在“基本设置”下的Facebook开发人员“ iPhone应用程序商店ID”中输入什么?
我即将完成本机iPhone应用程序,但我需要通过Facebook完成SSO。尽管我已尽力而为,但我无法在我在其网站上通过Facebook注册我的应用程序的过程中弄清楚“ iPhone App Store ID”字段应该值多少。 我在http://developer.apple.com/ios/manage/bundles/上有一个“应用程序ID” ,但是当我在该字段中输入应用程序ID时,Facebook给我错误“ iPhone应用程序商店ID必须为整数” 。我的应用程序ID不是整数。 我知道Facebook用“ App Store”专门标记了该字段;请告诉我事实并非如此,因为...如果“ App Store”仍在开发中,那么有人会在其中拥有一些东西吗? 每个人都有“这个问题”,这会激发他们的第一个Stack Overflow帖子,这是我的。我热切地等待着我缺少某些消息的消息。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.