当用户从 iOS 应用发布照片时,我尝试在标题中添加自定义链接。
像这样:图片
我的代码是:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@" - Via www.google.com", @"message",
aUIImage, @"picture",
nil];
FBRequestConnection *newPhotoConnection = [[FBRequestConnection alloc] init];
FBRequest *request = [FBRequest requestWithGraphPath:@"me/photos" parameters:params HTTPMethod:@"POST"];
[newPhotoConnection addRequest:request completionHandler:nil];
[newPhotoConnection start];
我得到:图片
那么如何在标题中添加自定义链接呢?我需要在 Facebook 应用设置中添加任何设置吗?谢谢!!