我想捲曲apptweak(REF - https://apptweak.io/api)PHP捲曲 - 授權令牌丟失
curl -H 'X-Apptweak-Key: your-api-key' https://api.apptweak.com/ios/applications/284882215.json
我有我的鑰匙,可以從終端捲曲。在PHP中,我得到「授權令牌失蹤」。
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'https://api.apptweak.com/ios/applications/284882215.json&country=US&language=en',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
X-Apptweak-Key => 'MY-KEY-IS-HERE'
)
));
$resp = curl_exec($curl);
print $resp;
curl_close($curl);
是X-Apptweak-Key =>'MY-KEY-IS-HERE'是POST字段的問題嗎?
出了什麼問題?
你需要將其設置爲標題,而不是後置字段。 – Maerlyn
**'X-Apptweak-Key:your-api-key'**將它傳遞到您的標題中。 – Dave
仍然收到錯誤的令牌錯誤 - 更新的代碼添加到標題的關鍵 - https://pastebin.com/V488XmLT有什麼想法? –