php - Is it possible to copy images from a particular directory on my server to Facebook? -


this question has answer here:

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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -

r - Update two sets of radiobuttons reactively - shiny -