我正试图通过PHP获取一些个人资料信息,如<,p>中所述
$user = json_decode(file_get_contents(
'https://graph.facebook.com/me?access_token=' .
$cookie['access_token']))->me;
当我运行此代码时,我收到以下警告:
警告:file_get_contents(.....)[function.file-get-contents]:无法打开流:第30行/home/website/public_html/helloworldpp/index.php中没有此类文件或目录< / p>
我已截断并添加“.....”而不是实际的网址。但是,当我通过浏览器访问“.....”URL时,我得到了json响应。我不知道为什么我无法通过PHP代码获取它。有人可以帮帮我吗?
非常感谢。