I get info in facebook graph api using file_get_contents ()
but sometimes I get an error.
I found out that cURL should be used instead of file_get_contents ().
The problem is that I do not know how to use cURL with the URL that I need to pass.
if i converted
file_get_contents($graph_url);
in cURL, what will be the code?
here is the contents of $ graph_url
$graph_url= "https://graph.facebook.com/me/photos?" . "url=" . urlencode($photo_url) . "&message=" . urlencode('') . "&method=POST" . "&access_token=" .$access_token;
source share