Unirest.io PHP を使用して Twitter から API トークンを取得しようとしています。私のコードは次のとおりです。
[in PHP]
$response = Unirest::post("https://api.twitter.com//oauth2/token",
array(
"Authorization" => "Basic [AUTH_KEY]",
"Content-Type" => "application/x-www-form-urlencoded;charset=UTF-8"
),
array("grant_type" => "client_credentials")
);
私がTwitterから得るものは次のとおりです。
{
errors: [
{
code: 170,
label: "forbidden_missing_parameter",
message: "Missing required parameter: grant_type"
}
]
}
私が理解しているように、リクエストの「本文」に「grant_type」:「client_credentials」を含める必要があります。これは、上記のユニレストリクエストに含まれていると思いましたが、明らかにそうではありません。ヘルプやコメントはありますか?