我有一個iOS應用需要將圖片發佈到人們的牆上。Facebook:無法發佈圖片供稿
我要做的就是上傳圖片到用戶的相冊,獲取圖像的鏈接,並將其發佈到用戶的牆像這樣:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kAppId, @"app_id",
imageLink, @"link",
thumbURL, @"picture",
toUserId, @"to",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
而且我得到以下錯誤:「FBCDN image is not allowed in stream...
」
當我使用我的開發人員用戶名登錄時,但使用其他用戶名(我除了DEV用戶名之外還測試了除管理FB應用程序的DEV用戶名以外的每個用戶名),它都不會發生。
請使用圖形API爲 http://stackoverflow.com/questions/3152413/posting-picture-on-facebook-feed-from-an-iphone-app-using-graph-api – priyanka 2012-04-02 13:37:03
我使用圖表API ... – Alex1987 2012-04-02 13:38:44
審查鏈接。它會爲你工作。 – priyanka 2012-04-02 13:40:26