php - Is it possible to copy images from a particular directory on my server to Facebook? -
this question has answer here:
- upload photo album facebook's graph api 3 answers
i know whether possible create php script copy images folder on server facebook. managed upload 1 image php script desired album. instead copy image files onto desired album.
is there literature available guide me.
yes, can send request facebook api upload locally stored photos. of course in context of album (created previously).
$facebook->setfileuploadsupport(true); $args = array('message' => 'photo caption'); $args['image'] = '@' . realpath($file_path); $data = $facebook->api('/me/photos', 'post', $args); print_r($data);
Comments
Post a Comment