기본 curl 함수를 이용하거나 본 블로그의 integralCurl 함수를 사용한다.
https://blog.mydepot.kr/20210324_232
<?php
$getTokenObj = integralCurl("https://id.twitch.tv/oauth2/token", true, "POST", [
'client_id' => $clientId, // 클라이언트 ID
'client_secret' => $apiKey, // 비밀 Key
'grant_type' => 'client_credentials'
]);
if ($getTokenObj['msg'] === "success") {
$apiTokenArr = [
'value' => json_decode($getTokenObj['data'])->access_token // 획득한 값을 후처리
];
echo '<pre>', print_r($apiTokenArr), '</pre>'; // 토큰값 출력
} else {
echo "error";
}