使用FBSDKShareOpenGraphObject将共享文章发布到Facebook后看不到图像

时间:2016-04-11 15:09:36

标签: objective-c fbsdk

我尝试将图像分享到Facebook,我需要将应用名称放在Facebook的共享帖子中

这是代码:

FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
UIImage *image1 = [GeneralMethods imageConvertToSizeWithImage:postImageView.image scaledToWidth:300];
photo.image = [UIImage imageNamed:@"VImage.png"];
photo.userGenerated = YES;

NSDictionary *properties = @{
                             @"og:type": @"article",
                             @"og:title": @"new item",
                             @"og:description": @"bla bla",
//                                 @"og:image": @[photo],
                             };
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:properties];



//    [object setPhoto:photo forKey:@"og:image"];

// Create an action
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
action.actionType = @"news.publishes";


[action setObject:object forKey:@"article"];


// Add the photo to the action. Actions
// can take an array of images.
[action setArray:@[photo] forKey:@"image"];

// Create the content
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = action;
content.previewPropertyName = @"article";

[FBSDKShareDialog showFromViewController:ParetDelaget withContent:content  delegate:self];

这是我预览的Facebook预览页面:

enter image description here

这是我的Facebook墙上没有图片的帖子:

enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:2)

取消注释这一行:

//                                 @"og:image": @[photo],

并评论一下:

[action setArray:@[photo] forKey:@"image"];

像这样,您将同时显示图像,标题和说明。

一点点评论:照片对象必须是字符串网址

就我而言,这是结果代码:

// Create an object  
NSDictionary *properties = @{
                             @"og:type": @"article",
                             @"og:url": @"https://the_link_you_want.com",
                             @"og:title": @"your title",
                             @"og:description": @"your description",
                             @"og:image": @"http://url_to_your_image"
                             };

FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject  objectWithProperties:properties];

// Create an action
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
action.actionType = @"news.publishes";

[action setObject:object forKey:@"article"];

// Create the content
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = action;
content.previewPropertyName = @"article";


FBSDKShareDialog *shareDialog = [[FBSDKShareDialog alloc] init];
shareDialog.fromViewController = self;
shareDialog.shareContent = content;
[shareDialog show];

if (![shareDialog canShow]) {
    // update the app UI accordingly
}
NSError *error;
if (![shareDialog validateWithError:&error]) {
    NSLog(@"FB Error: %@", error);
}

希望有所帮助