我正在尝试使用 Facebook-SDK 在 iOS 中分享一个 youtube 视频,但它总是返回 error code 2
invalid value for videoURL
这是我的代码
NSURL *videoURL =[NSURL URLWithString: @"https://youtu.be/i-QlMqZh8_g"];
FBSDKShareVideoContent *content =[[FBSDKShareVideoContent alloc]init];
content.video= [FBSDKShareVideo videoWithVideoURL:videoURL];
[FBSDKShareAPI shareWithContent:content delegate:self];
Best Answer-推荐答案 strong>
分享 youtube 链接:
NSURL *videoURL =[NSURL URLWithString: @"https://youtu.be/i-QlMqZh8_g"];
FBSDKShareLinkContent *shareLinkContent = [[FBSDKShareLinkContent alloc] init];
shareLinkContent.contentURL = videoURL;
[FBSDKShareAPI shareWithContent:shareLinkContent delegate:self];
关于ios - 使用 Facebook SDK 分享视频,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/30217924/
|