Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
require_once("externals/facebook-sdk/src/facebook.php");
 $config = array();
      $config['appId'] = 'XXXXXXXXXXXXXXXXXXXXXXXX';
      $config['secret'] = 'XXXXXXXXXXXXXXXXXXXXXXXXX'; $config['fileUpload'] =true;

      $facebook = new Facebook($config)

; and I can post video like

$facebook->api('/me/feed', 'post', array(
     'message' => $message,
    'link' => 'http://www.test.org/videos/'.$video['video_id'].'/'.$_POST['title'],
    'type'=>'video',
    'source'=>$video['embed'],
    'picture'=> $pic,
    'name'=> $_POST['title'],
    'caption'=>'this is a test' , 
    'description'=> $_POST['desc']) 
);

How can I do the same for audio? Shall I just change video to audio and provide the url of that audio?

share|improve this question

1 Answer

up vote 1 down vote accepted

Well. as per the date, facebook is NOT supporting audio files (according to the best of ma knowledge). Hence you will not be able to do what you want to do. What you can do is, upload them to a third party server and share the link. Or use a third party app like Spotify.

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.