在使用 Discord OAuth 登录网站后,我试图将角色授予授权用户。
我使用了 GuzzleHttp,这是我的代码:
$response = Http::PUT('api/guilds/{guild id}/members/{user id}/roles/{role id}');
return $response->json();
(我在这里替换了 ids 和 api 链接,在我的代码中没问题)
但它返回 405 Method not allowed。问题出在 Discord API 文档中,方法是 PUT
我什至用“withToken”发送了标头,但它没有用