I have been trying to post a user generated photo on Facebook. I could do it successfully on the graph explorer, and through a simple HTML form. But have been having a really tough time integrating the graph api call into code. I have tried Facebook->api, and cURL on PHP. And FB.api on Javascript.
Eventually I have settled with creating and submitting a form pro grammatically in Javascript.
Now, I have the following concerns: 1. Are there any security concerns with the method I have adopted ? 2. Is my analysis (mentioned below) with PHP failures correct ? are there any alternatives ? 3. IS my analysis (mentioned below) with Javascript failures correct ? are there any alternatives ?
PHP code
require_once('AppInfo.php');
require_once('sdk/src/facebook.php');
$facebook = new Facebook(array(
'appId' => AppInfo::appID(),
'secret' => AppInfo::appSecret(),
'fileUpload' => true,
'cookie' => true
));
$user_id = $facebook->getUser();
$access_token = $facebook->getAccessToken();
$params_graph = array( 'access_token' => $access_token,
'myaction' => $myactionobject,
'image[0][url]' => $photo,
'image[0][user_generated]' => true );
$c = curl_init( "https://graph.facebook.com/me/namespace:myaction" );
curl_setopt($c, CURLOPT_SSLVERSION, 3);
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, http_build_query( $params_graph ) );
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($c, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($c);
curl_close ($c);
$out = json_decode($result,true);
print( "\n\nresult: " );
print_r($out);
I have tried the same thing with $facebook->api as well, and I see the below error in both the cases:
stdClass Object ( [error] => stdClass Object ( [type] => Exception [message] => The user generated photo at could not be uploaded because: cURL Error [#28, CURLE_OPERATION_TIMEOUTED]: Transfer failed. [code] => 1611180 ) )
Now, I could successfully do a photo upload to an album using cURL. A photo upload happens from a users local disk whereas a user generated photo has to come through a web url. I am assuming there are limitation of cURL in uploading a picture from a web url, and facebook needs it to be a web url and thats where we are stuck. I tried other POST methods from PHP, and kind of gave up (rather quickly) when I couldn't get around them as well (they were throwing certain errors with content-type)
Now a Javascript FB.api call needs an array with keys like "image[0][url]" - and I couldn't quite achieve that. The following and similar variations would give syntactical errors...
FB.api ("/me/ns:action", 'post', {obj:var1, image[0][url]:var2, image[0][user_generated]:true} )