I m致力于一个网站,让用户看到他存储在google发动机上的录像文档,并与1 html5的参与者一起使用。
我利用谷歌·皮克尔展示用户档案。 在收集档案时,用户被转往像我的档案一样的ur。 php?id={file_id}
在着陆页上,如果我使用下文中类似的代码,我会收到<>403个错误(如不开放流:吉大港群岛大学请求失败!) HTTP/1.0 403 Forbidden)。
<?php
$url="https://www.googleapis.com/drive/v1/files/".$_GET["id"]."";
$json = file_get_contents($url);
$data= json_decode($json,true);
print_r($data);
?>
Do I need to check again that the user is logged in? If so, which is the quicker way?