从我的应用程序图像上传到FB并显示在时间轴上,但它仅在我的页面上可用。即使我分享或喜欢它。它不会与我的任何朋友共享。
我就是这样做的。 NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @“SnapShot !!!”,@“留言”, image,@“source”, 零];
[FBRequestConnection startWithGraphPath:@"me/photos"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"Post Result : %@ error : %@", result, error);
if (error != null) {
NSLog(@"Posted");
}
}];
答案 0 :(得分:0)
LOL。我没有将应用程序设置从沙箱启用更改为禁用,因此它仅适用于开发团队。