Tag: facebook page

FacebookgraphicsApi风扇页面照片上传(IOS)

我有一个应用程序,即时上传照片,并试图添加上载到用户的Facebook粉丝页面(他们pipe理)的能力。 我遇到的问题是,我可以成功地将照片上传到粉丝页面,但粉丝页面时间轴上没有显示,只是在粉丝页面的“最近的post”部分显示。 我显然不能正确地上传这些图片。 这是我的代码: ACAccountType * accountType = [_accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook]; [_accountStore requestAccessToAccountsWithType:accountType options:@{ACFacebookAppIdKey: @"XXXXXXXXXXXX", ACFacebookPermissionsKey : @[@"photo_upload",@"publish_stream", @"publish_actions", @"manage_pages"], ACFacebookAudienceKey : ACFacebookAudienceEveryone} completion:^(BOOL granted, NSError *error) { if (granted) { NSArray * accounts = [_accountStore accountsWithAccountType:accountType]; NSDictionary *fanPages = [[NSUserDefaults standardUserDefaults] objectForKey:FACEBOOK_PREF_FAN_PAGES_IDS]; //if using fan pages if (fanPages.count) { for (id key in fanPages) { […]