所以我试图通过PHP使用https://api.thetvdb.com/swagger api。
我已成功设法使用以下方法从API获取JWT令牌:
function tvdb_post ($url, $userinfo) {
$ch = curl_init($url);
$payload = json_encode($userinfo);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
$return = json_decode($result, true);
return $return;
}
$userinfo = array (
'username' => 'dstealth',
'userkey' => '***{redacted}***',
'apikey' => '***{redacted}***'
);
$token = tvdb_post('https://api.thetvdb.com/login', $userinfo);
然后我复制令牌并在API网页上提交以提交令牌。它给了我一个确认信息。
问题出现在下一步。如果我在API网站页面上执行上述步骤,然后在API网页上执行下一步,它就可以正常工作。但是当我尝试将下一步转换为PHP时,它会给我一个“未授权”消息。
API网页的下一步是:
curl -X GET --header 'Accept: application/json' --header 'Authorization: Bearer <token>' 'https://api.thetvdb.com/refresh_token'
// returns a response code 200 and refreshes the token successfully.
在php中我的下一步看起来像这样:
$authorization = "Authorization: Bearer ***{redacted}*** ";
function tvdb_api ($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', $authorization));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$json = curl_exec($ch);
curl_close($ch);
$array = json_decode($json, true);
return $array;
}
$refresh = tvdb_api('https://api.thetvdb.com/refresh_token');
// This returns a "Not Authorized" error.
有谁能告诉我在将下一步从API网页转换为php之间我做错了什么?
答案 0 :(得分:0)
$ authorization变量在函数之外,函数试图使用它的值。一旦我在函数内移动它,函数就按预期工作。对不起发布!