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