0
是否有可能在沒有共享對話框的情況下這樣做?因爲到目前爲止,我沒有發現任何允許的。FacebookSDK:在我的時間軸上用文字/鏈接分享圖像
這只是沒有任何文字的份額照片:
[FBRequestConnection startForUploadPhoto:self.imageToShare completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { }];
這不只是照片文本份額:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
self.titleToShare, @"name",
self.textToShare, @"description",
self.linkToShare, @"link",
@"http://www.somesite.com/logo_i.png", @"picture", nil];
[FBRequestConnection startWithGraphPath:@"/me/feed" parameters:params HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { }];
我該怎麼辦?
在此先感謝。