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.

I've added the following code into the "body" section:

<?php
  require "php-sdk/facebook.php";
  $facebook = new Facebook(array(
    'appId'=>'xxxxxxxxx',
    'secret'=>'xxxxxxxxxxxxxxxxx',
    'cookie'=>true
  ));
  if(!$facebook->getUser()) {
    $url = $facebook->getLoginUrl(array('scope'=>'publish_actions'));
    echo "<script> top.location=\"".$url."\"; </script>";
    exit(0);
  }
  $params = array('photo'=>'' . site_url( $this->uri->uri_string() ) . '',
      'access_token'=>$facebook->getAccessToken());
  $out = $facebook->api('/me/marcellusmusic:love','post',$params);
  print_r($out);
?>

I received the following error:

Uncaught OAuthException:
  Unknown path components:
    /app_marcellusmusic:love thrown in /home/content/88/4739388/html/php-sdk/base_facebook.php on line 1238'

Any advice?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.