是这个吗?
我正在尝试转换$data = file_get_contents("php://input");
为经典的 asp...
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.6.0")
xmlhttp.open "GET", php://input, false
xmlhttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
xmlhttp.send
TOKEN = xmlhttp.responseText
编辑:回答约翰的问题......
实时更新
成功订阅后,Facebook 将在每次发生更改(所选字段或连接)时继续调用您的端点。对于每次更新,它都会发出一个 HTTP POST 请求。
该请求将具有 application/json 的内容类型,并且正文将包含一个 JSON 编码的字符串,其中包含一个或多个更改。
PHP 开发人员注意事项:在 PHP 中,要获取编码数据,您将使用以下代码:
$data = file_get_contents("php://input"); $json = json_decode($data);