Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.