我有一个将链接和照片上传到 Facebook 的应用程序。我已在 developer.facebook.com 的应用设置中将其链接到我的应用 facebook 页面。有两种情况。
1)当我上传带有一些文字的链接时。“via < Appname >”可以从我的Home和Profile中点击。
[FB requestWithGraphPath:@"me/feed" andParams:[NSMutableDictionary dictionaryWithObjectsAndKeys: [[self.recipeDetails objectForKey:@"source"] objectForKey:@"sourceRecipeUrl"], @"link",fbtextView.text, @"message", nil] andHttpMethod:@"POST" andDelegate:self];
2)当我上传带有一些文字的照片时。“通过 < Appname >”只能从我的主页提要中单击,但不能从个人资料提要中单击。
[FB requestWithGraphPath:@"me/photos" andParams:[NSMutableDictionary dictionaryWithObjectsAndKeys: imageData,@"source",fbtextView.text, @"message", nil] andHttpMethod:@"POST" andDelegate:self];
这是实际情况还是我错过了什么。请帮忙。