【问题标题】:Discord Settings Method Not Allowed不允许使用不和谐设置方法
【发布时间】:2021-11-21 09:16:50
【问题描述】:

我觉得这段代码为什么是“不允许的方法”? , 令牌错误?发错了?标题错了? 我没有想法。 https://drive.google.com/file/d/1WvHkkKtv9ANE3dlD5X6c7tttFcpKj6dn/view?usp=sharing https://drive.google.com/file/d/1OJUuns2FEoRk1WaZClDLx8PzBeg1xba3/view?usp=sharing

【问题讨论】:

    标签: php discord


    【解决方案1】:

    “405 Method not allowed”通常意味着它所说的:您正在使用的 HTTP 方法不被您尝试执行的操作接受。

    您正在发送一个 POST 请求。虽然我自己没有使用过 Discord 的 API,但a quick search 给我的印象是使用/users/@me/settings 设置custom_status 需要方法是PATCH。

    Here's a StackOverflow question which answers how to send a PATCH request with PHP/CURL:

    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PATCH');
    

    【讨论】:

      猜你喜欢
      • 2011-04-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-23
      • 1970-01-01
      • 2021-08-16
      • 2020-01-08
      相关资源
      最近更新 更多