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

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -