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 want to publish a photo automatically on a Check-In location ALBUM... not on a user's wall like usual.

I have tried a variation of the usual code:

$facebook->setFileUploadSupport(true);
$args = array('message' => 'Photo Caption');
$args['image'] = '@' . realpath($_SERVER['DOCUMENT_ROOT']."/php-sdk/examples/alfopic.jpg");

try {
    $photo = $facebook->api('/416595185038313/photos', 'post', $args); 
} catch (FacebookApiException $e) {
    echo "result=ERROR&message=".$e->getMessage();
    die();
}

Where 416595185038313 is a check-in location.

All I get is the photo published on a user's wall.

Is this possible? If yes can anyone share a code snippet?

Thanks a lot

Alfonso

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.