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 -

How to merge four videos on one screen with ffmpeg -

c - getting error: cannot take the address of an rvalue of type 'int' -