Question: How to upload an image from my webserver to facebook via FB API?
I\'m writing an application that retrieves images from the user\'s photo album, makes some
I think you are doing it all wrong Look at my code
$appapikey = 'keykeykey'; $appsecret = 'secretcesret'; $facebook = new Facebook($appapikey, $appsecret); $user=$facebook->require_login() $facebook->api_client->photos_upload($file, null, "A test Photo", $user);
This works for me