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'm trying to make a PHP script that will post a hosted photo to a user's profile without using the PHP SDK. This is what I have right now:

<?php
   $app_id = "[My App ID]";
   $app_secret = "[My App Secret]";
   $post_login_url = "[current page]";

   $code = $_REQUEST["code"];

   //Obtain the access_token with publish_stream permission 
   if(empty($code)){ 
      $dialog_url= "http://www.facebook.com/dialog/oauth?"
       . "client_id=" .  $app_id 
       . "&redirect_uri=" . urlencode( $post_login_url)
       .  "&scope=publish_stream";
      echo("<script>top.location.href='" . $dialog_url 
      . "'</script>");
     }
    else {
      $token_url="https://graph.facebook.com/oauth/access_token?"
       . "client_id=" . $app_id 
       . "&redirect_uri=" . urlencode( $post_login_url)
       . "&client_secret=" . $app_secret
           . "&code=" . $code;
          $response = file_get_contents($token_url);
          $params = null;
          parse_str($response, $params);
          $access_token = $params['access_token'];






         // This would probably be where my problem is
         $graph_url= "https://graph.facebook.com/me/photos?"
         . "access_token=" .$access_token;
$postdata = http_build_query(
         array(
          'source' => $imageurl, //this variable has been properly defined
          'message' => $image_description //this, too, has been defined
            )
          );
         $opts = array('http' =>
         array(
          'method'=> 'POST',
          'header'=>
            'Content-type: application/x-www-form-urlencoded',
          'content' => $postdata
          )
         );
      }
?>

When this runs, a new album with the app's name is created, but the file isn't uploaded. Is there any way to make this work? If somebody knows a solution in PHP or even javascript, please share

-Cory

share|improve this question

2 Answers

Slightly off topic, why are you using JavaScript to redirect, and not PHP?

header('Location: ' . $dialogue_url );

share|improve this answer
...same reason I'm not using the PHP SDK. I get an error that would probably have an easy fix, however I honestly have no idea what I'm doing. – Cory Rs Apr 7 '12 at 4:36
Heh, that's where we all start :-) What error do you receive? Is it something about headers already being sent? – Azirius Apr 7 '12 at 12:11
Yeah, with the session cookies and the headers... you know, the one a lot of people seem to have had – Cory Rs Apr 7 '12 at 18:50
Well, basically, all that means is that some HTML has been outputted to the browser and this means the headers have already been sent and cannot be modified after the fact. What you can do is either use output buffering to keep all the HTML aside until the request completes or don't output anything until you've completed your logic. The second one is the proper way of doing this, however output buffering is a band-aid cure to the problem and does it pretty well in my experience. – Azirius Apr 7 '12 at 23:19
So, in my code, how would I go about doing this? – Cory Rs Apr 8 '12 at 1:17
show 1 more comment

Try this

if you are doing a form submission you can do like this.

$sourceFile = $_FILES[$fileElementName];

$postdata = http_build_query(array('source' => '@'.$sourceFile['tmp_name']));

if u just want to test

'source' => '@'.$imgLocalPath;

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.