- 我已尝试发送以下 cURL,在 Spotify 的客户端凭据流中建议:
(这是 Spotify 的 4 个授权流程之一)
curl -X "POST"
-H "Authorization: Basic ZjM4ZjAw...WY0MzE="
-d grant_type=client_credentials
https://accounts.spotify.com/api/token
- Authorization 标头至关重要:
.
Authorization: Basic <base64 encoded client_id:client_secret>
我确实有client_id和client_secret。
我已经使用 Windows 命令行完成了 Base64 编码:
certUtil -encode input_string.txt encoded_string.txt
我收到“无效请求”或类似信息。
有人可以帮忙吗?