I'm french, sorry for my english. I try to use the Graph API so as to publish a picture on my facebook page but I always obtain this error :
Warning: curl_setopt_array() [function.curl-setopt-array.php]: open_basedir restriction in effect. File() is not within the allowed path(s): (*) in /home/httpd/s/c/i/sciences85000/sciences85.franceserv.com/src/base_facebook.php on line 807 Fatal error: Uncaught CurlException: 3: No URL set! thrown in /home/httpd/s/c/i/sciences85000/sciences85.franceserv.com/src/base_facebook.php on line 819
Here is my send.php :
$link = $_POST['link']; $txt = $_POST['txt']; $FILE_PATH=$link;
$app_config = array('appId' => '***', 'secret' => '***');
$page_config = array('access_token' => '***', 'page_id' => '***', 'fileUpload' => true);
$facebook = new Facebook($app_config); $params = array('access_token' => $page_config['access_token'], 'message' => $txt); $params['source'] = '@' . realpath($FILE_PATH);
$facebook->setFileUploadSupport(true); $post_id = $facebook->api('/'.$page_config['page_id'].'/photos','post',$params); echo 'succes !'; }
I understood that with a local link of any picture which is in the same directory as send.php, it works fine (for example : picture.jpg). But I'd like to use an external link (http://site.com/picture.jpg), is it possible ?
Thanks.
EDIT : I resolved it. You must upload your file, so I added this in my from :
<input type="file" name="file" size="30" value="Choose your photo"><input type="submit" name="upload" value="Upload">
And I set $link = $_FILES['fichier']['tmp_name'];, it works fine. :)