How I can give a link to the caption of audio post on the wall
Hey!! I have made an application through which I am publishing an audio file to the wall in facebook. Further I want to give a clickable caption, that when get a click take me to some url. Can somebdy plz help me in sorting it开发者_StackOverflow out....
Thanx in advance...!
You need to send media as an attachment with your publish request.
{"media": [{
"type": "music",
"src": "URL_OF_MEDIA",
"title": "NAME_OF_AUDIO_CLIP",
"artist": "ARTIST",
"album": "ALBUM"
}]}
Docs here: http://developers.facebook.com/docs/guides/attachments
精彩评论