Webhook OAuth - 如何用 webhook 授权代码交换访问令牌?
Webhook OAuth - How do I exchange a webhook authorization code for an access token?
我正在尝试使用 oauth approach of adding webhooks 到 Discord 中的频道。工作流程是用户使用 OAuth 对我的应用程序进行身份验证。然后我将他们重定向到:
ApiClient::API_URL.'/oauth2/authorize?client_id='.Discord::appKey().'&scope=webhook.incoming&redirect_uri='.urlencode($webhookCallback->callbackUrl()).'&response_type=code');
重定向 URL 有效,因为它允许 OAuth 用户选择 server/channel。
When you exchange the authorization code for an access token, the token response will contain the webhook object:
我正在使用以下请求尝试将授权代码转换为访问令牌,但没有成功:
$client = new Client();
$response = $client->post('https://discordapp.com/api/oauth2/token', [
'headers' => [
'Accept' => 'application/json'
],
'form_params' => [
'grant_type' => 'authorization_code',
'client_id' => env('DISCORD_APP_KEY'),
'client_secret' => env('DISCORD_APP_SECRET'),
'redirect_uri' => url('/discord/webhook-authorized'),
'code' => $request->get('code')
],
]);
我从 API 得到的回复是:
Client error: `POST https://discordapp.com/api/oauth2/token` resulted in a `401 UNAUTHORIZED` response:
{"error": "access_denied"}
完成此请求我需要哪种资助类型?
'grant_type' => 'authorization_code',
需要
'grant_type' => 'client_credentials',
我正在尝试使用 oauth approach of adding webhooks 到 Discord 中的频道。工作流程是用户使用 OAuth 对我的应用程序进行身份验证。然后我将他们重定向到:
ApiClient::API_URL.'/oauth2/authorize?client_id='.Discord::appKey().'&scope=webhook.incoming&redirect_uri='.urlencode($webhookCallback->callbackUrl()).'&response_type=code');
重定向 URL 有效,因为它允许 OAuth 用户选择 server/channel。
When you exchange the authorization code for an access token, the token response will contain the webhook object:
我正在使用以下请求尝试将授权代码转换为访问令牌,但没有成功:
$client = new Client();
$response = $client->post('https://discordapp.com/api/oauth2/token', [
'headers' => [
'Accept' => 'application/json'
],
'form_params' => [
'grant_type' => 'authorization_code',
'client_id' => env('DISCORD_APP_KEY'),
'client_secret' => env('DISCORD_APP_SECRET'),
'redirect_uri' => url('/discord/webhook-authorized'),
'code' => $request->get('code')
],
]);
我从 API 得到的回复是:
Client error: `POST https://discordapp.com/api/oauth2/token` resulted in a `401 UNAUTHORIZED` response:
{"error": "access_denied"}
完成此请求我需要哪种资助类型?
'grant_type' => 'authorization_code',
需要
'grant_type' => 'client_credentials',