gpt4 book ai didi

iphone - 发布包含 UIImage 的 Facebook 链接

转载 作者:行者123 更新时间:2023-11-28 20:28:44 25 4
gpt4 key购买 nike

我想发布一个包含图像的链接到 Facebook 时间轴:

UIImage *img = [UIImage imageNamed:@"1.png"];
self.postParams =
[[NSMutableDictionary alloc] initWithObjectsAndKeys:
@"Here we go", @"message",
@"https://developers.facebook.com/ios", @"link",
UIImagePNGRepresentation(img), @"picture",
@"Facebook SDK for iOS", @"name",
@"Build great social apps and get more installs.", @"caption",
@"The Facebook SDK for iOS makes it easier and faster to develop Facebook integrated iOS apps.", @"description",
nil];

[FBRequestConnection startWithGraphPath:@"me/feed" parameters:self.postParams HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
[self showAlert:@"Link is posted" result:result error:error];
}];

UIImage 没有发布。你能帮帮我吗?

但只要我使用:

@"https://developers.facebook.com/attachment/iossdk_logo.png", @"picture"

有效。

最佳答案

如果您阅读 the documentation ,它说“图片”参数应该是字符串类型,即:一个 url。如果没有一些巧妙的技巧,您不能同时从移动 SDK 发布图像和消息:请参阅文档中的 me/photos,但您的选择非常有限。

关于iphone - 发布包含 UIImage 的 Facebook 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13085991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com