For the guy that asked about it. Sorry for new topic, but the forum won't let me reply to your topic for some reason? But here is an example... Something I put together for testing the graph ..
For Facebook Integration
1
For the guy that asked about it. Sorry for new topic, but the forum won't let me reply to your topic for some reason? But here is an example...
Something I put together for testing the graph ..
Enjoy
Something I put together for testing the graph ..
PHP Code:
function fetchData($user)
{
if(!empty($user))
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/".$user);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, "http://www.jpmalloy.com"); // change to your URL
$body = curl_exec($ch); // json string
curl_close($ch);
$data = json_decode($body, true);
return $data;
}
}
$user = ''; // Facebook username
$data = fetchData($user);
echo "https://graph.facebook.com/".$data['id']."/picture?type=large";
- kingjpm
Next Topics on Trending Feed
-
1