我已成功使用 photos.upload api 将本地图片上传到用户相册。
如何上传带有格式化链接的本地图片?确实支持添加标题photos.upload
文本,但我无法将 html 链接嵌入到标题中。有没有办法使用 Graph-api 来做到这一点?
我已成功使用 photos.upload api 将本地图片上传到用户相册。
如何上传带有格式化链接的本地图片?确实支持添加标题photos.upload
文本,但我无法将 html 链接嵌入到标题中。有没有办法使用 Graph-api 来做到这一点?
我不确定标题本身,但这是一种将图像与消息一起发布到用户墙上的方法。消息文本可以毫无问题地嵌入链接。
Facebook* fb = [(AppDelegate *) [[UIApplication sharedApplication] delegate] facebook];
NSData* imageData = UIImageJPEGRepresentation([UIImage imageNamed: @"A.jpg"], 90);
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: [fb accessToken],
@"access_token",
@"some message here...with a link http://www.google.com",
@"message",
imageData,
@"source",
nil];
[fb requestWithGraphPath: @"me/photos"
andParams: params
andHttpMethod: @"POST"
andDelegate: self];