我正在寻找一种通过我的iOS应用在Facebook上发布360张照片的方法。
我一直在google上搜索,找不到任何有用的答案。
有人可以澄清这种可能性吗?
答案 0 :(得分:1)
好的,最后我找到了this thread。
似乎Facebook会读取元数据以识别360度照片。
答案 1 :(得分:0)
我已经创建了一个完全符合这一要求的框架。
鉴于您已成功获得许可,您可以采取以下措施:
[[Facebook360Manager sharedInstance] shareImage:[UIImage imageNamed:@"cylindrical360.jpg"]
userCaption:@"Example caption..."
horizontalFOV:360.0
sharePreference:FacebookShareManagerPreferenceCylindricalImage
completionBlock:^(NSError * _Nullable error, NSString * _Nullable postID) {
if (error) {
NSLog(@"Error: %@",error);
}else{
NSLog(@"Shared successfully. Post ID: %@",postID);
}
}];