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.

The facebook graph API lets to allow photos to the wall, ok, but how to specify I'd want for those photos to be high quality

$access_token=$_SESSION['access_token'];

$graph_url="https://graph.facebook.com/me/photos?access_token=".$access_token;

$args=array( 'message' => $description, 'url' => $im_url );
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $graph_url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
$data=curl_exec($ch);

I'm using that code form which anyone can see message and url are the params sent as if these were set on an input right, could there be a possibility of adding a third param that specifies I'd like for the photos to be high quality?

Might this be the correct way:

    $args=array( 'message' => $description, 'quality' => "high", 'url' => $im_url );
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.