听到我的代码。我想用api php facebook拍照。 变量$ photo返回NULL值。
<?php
$profile = $facebook->api('/<idfacebook>');
$photo = $facebook->api('/'.$profile['username'].'/picture');
?>
答案 0 :(得分:1)
来自stackoverflow.com/questions/2821061
“只需通过此网址获取数据: http://graph.facebook.com/sarfraz.anees/picture
将sarfraz.anees(我的名字)替换为您想要获取照片的用户的名字。
您可以使用PHP的file_get_contents
函数来读取该URL并处理检索到的数据。
资源:http://developers.facebook.com/docs/api
注意:在php.ini中,您需要确保启用openssl扩展以使用PHP的file_get_contents
函数来读取该URL。 “