我正在开发一个 ios 应用程序。
我需要分享一个到 facebook 的视频链接。视频将保存在我的服务器上。
我正在使用以下代码:-
params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
AppName, @"title",
AppName, @"name",
[NSString stringWithFormat:@"%@",text], @"caption",
composeViewController1.text, @"description",
Path, @"link",
[NSString stringWithFormat:@"%@%@app_icon-DEMO.png",ServerPath,URLImageFolder], @"picture",
nil];
[FBRequestConnection startWithGraphPath:@"/me/feed"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (!error) {
// Link posted successfully to Facebook
NSLog(@"result: %@", result);
} else {
// An error occurred, we need to handle the error
// See: https://developers.facebook.com/docs/ios/errors
NSLog(@"%@", error.description);
}
}];
但是我从这个错误中得到了错误
Error Domain=com.facebook.sdk Code=5 "The operation couldn’t be completed. (com.facebook.sdk error 5.)" UserInfo=0xc52be90 {com.facebook.sdk:HTTPStatusCode=500, com.facebook.sdk:ParsedJSONResponseKey={
body = {
error = {
code = 1500;
"error_subcode" = 1609005;
message = "This link could not be posted.";
type = FacebookApiException;
};
};
code = 500;
但如果我尝试分享静态链接说“www.google.com”它正在工作。
我的应用程序的流程是:-
用户将检查 facebook 按钮上的标记,并且提要将同时在 facebook 和我的应用程序上共享。
感谢帮助。