I want to upload a photo after this script automatically tags my 50 friends,
I have this script
But how do I implement the function "getRandomFriends ()" So that the script will work
The code upload only the image without tag please if someone would help me
<?php
require 'facebook.php';
$facebook = new Facebook(array(
'appId' => '',
'secret' => '',
'cookie' => true,
));
$user = $facebook->getUser();
if ($user) {
$facebook->setFileUploadSupport(true);
//Create an album
$album_details = array(
'message'=> 'Album desc',
'name'=> 'Album name'
);
$create_album = $facebook->api('/me/albums', 'post', $album_details);
//Get album ID of the album you've just created
$album_uid = $create_album['id'];
//Upload a photo to album of ID...
$photo_details = array(
'message'=> 'Photo message'
);
$file='images/logo.jpg'; //Example image file
$photo_details['image'] = '@' . realpath($file);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
/*
* Make tags on photo
*/
$photo_id = $upload_photo['id'];
$friends = getRandomFriends(); // make implementation of this function
foreach($friends as $friend_uid){
$tag_params = array(
'to' => $friend_uid,
'tag_text' => 'Sample tag text',
'x' => 0,
'y' => 0
);
$result = $facebook->api('/' . $photo_id . '/tags', 'POST', $tag_params);
}
}
?>