2

我有一个将链接和照片上传到 Facebook 的应用程序。我已在 developer.facebook.com 的应用设置中将其链接到我的应用 facebook 页面。有两种情况。

1)当我上传带有一些文字的链接时。“via < Appname >”可以从我的HomeProfile中点击。

[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];

这是实际情况还是我错过了什么。请帮忙。

4

1 回答 1

-1

您是否尝试在您的 Facebook 应用上查看此设置:

Facebook 应用程序设置

它未经测试,但也许您可以尝试启用和禁用此设置以检查它是否会更改您的结果。

于 2013-05-11T02:26:01.500 回答