2010-12-09 67 views
3

我正在開發一個應用程序,需要我將音頻文件發佈到Facebook帳戶。我出版它通過FBStream並在如何在Facebook上發佈音樂文件(mp3)

NSString *str = @"{'media': [{ 
    'type': 'music', 
    'src': 'http://www.looptvandfilm.com/blog/Radiohead%20-%20In%20Rainbows/01%20-%20Radiohead%20-%2015%20Step.MP3', 
    'title': '15 Step', 
    'artist': 'Radiohead', 
    'album': 'In Rainbows' 
}]}"; 

NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: str, @"attachment" ,nil,@"message",nil]; 


    [[FBRequest requestWithDelegate:self] call:@"facebook.stream.publish" params:params]; 

我可以發佈/發表我的圖片和視頻使用相同的模式向Facebook,但是當我嘗試這個代碼就顯示「類型的音樂,不支持」。我從這個字符串得到:http://developers.facebook.com/docs/guides/attachments

請幫我擺脫它。

回答

1

你可以將它張貼,通過使用此字符串(STR)格式,

NSString *str = @"{'media': [{ 
    'type': 'mp3', 
    'src': 'http://www.looptvandfilm.com/blog/Radiohead%20-%20In%20Rainbows/01%20-%20Radiohead%20-%2015%20Step.MP3', 
    'title': '15 Step', 
    'artist': 'Radiohead', 
    'album': 'In Rainbows' 
}]}"; 
+0

+1感謝您的代碼。如果你嘗試過,也可以嘗試爲帖子特定用戶的牆提供代碼。我會張貼短信,鏈接.. – Splendid 2011-03-28 18:03:12

相關問題