API 끝점에서 Bearer 토큰을 가져오고 다음을 설정합니다.
$authorization = "Bearer 080042cad6356ad5dc0a720c18b53b8e53d4c274"
다음으로 CURL을 사용하여 보안 끝점에 액세스하고 싶지만 Bearer 토큰을 설정하는 방법과 위치를 잘 모르겠습니다.
나는 이것을 시도했지만 작동하지 않습니다.
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json' , $authorization ));
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,$post);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$result = curl_exec($ch);
curl_close($ch);
return json_decode($result);
편집하다:
문서에 따르면 https://apigility.org/documentation/auth/authentication-oauth2 와 같이 전달자 토큰을 사용해야합니다.
GET /oauth/resource HTTP/1.1
Accept: application/json
Authorization: Bearer 907c762e069589c2cd2a229cdae7b8778caa9f07