Facebook 内容在墙和主页上看起来不同,使用 iOS 的 facebook sdk 从 iOS 应用发布内容后,
使用的代码:我们使用以下代码在 facebook 墙上发布数据。
[NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Found this app ", @"message",
@"AppName", @"name",
@"App Title", @"caption",
@"Description data", @"description",
@"Link URL", @"link",
@"Image URL", @"picture",nil];
// create the connection object.
FBRequestConnection *newConnection = [[[FBRequestConnection alloc] initWithTimeout:kRequestTimeoutInterval] autorelease];
// create the request object, using the fbid as the graph path as an alternative the request* static methods of the
// FBRequest class could be used to fetch common requests, such as /me and /me/friends
FBRequest *request=[[[FBRequest alloc] initWithSession:activeSession
graphPath:@"me/feed"
parameters:params
HTTPMethod:@"POST"] autorelease];
详细信息:当我们要发布此数据并且链接 url 可用时,主屏幕和个人资料屏幕中的内容看起来会有所不同。
相反,应用程序名称在主页中显示链接 URL 标题,但在个人资料页面中显示正确的内容,如应用程序标题。它只会从 iOS 应用发布,从 Android 应用看起来不错。
请帮助我 tikamchandrakar@gmail.com 或 tikam.chandrakar@xymob.com 让我知道是否有任何不清楚的地方。谢谢