我正在尝试向Authentication DocPOST
中指定的 URL 发出请求,但它没有返回成功的响应:
$ch = curl_init('https://graph.facebook.com/oauth/device?type=device_code&client_id=APPID');
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1) Gecko/20090624 Firefox/3',
CURLOPT_POST => true
));
$result = curl_exec($ch);
exit(var_dump($result));
APPID
我的应用程序 ID在哪里。它只返回一个boolean false
. 我错过了什么?