Discord Webhooks和JSON构建了非OAuth应用程序的限制

时间:2018-01-13 19:02:23

标签: discord

我试图澄清是否有可能POST JSON到Discord频道webhook,而不需要完全成熟的OAuth认证应用,并让它显示多行文字。

我可以成功地将数据发送到webhook端点(使用PowerShell),但它会忽略除“内容”之外的任何字段。我希望能够发布来自Embed object文档的Execute Webhook,但它似乎忽略了它。

JSON就像这样:

{
  "content": "Hi. I'm a robot.",
  "embed": {
    "title":"This is a title",
    "type":"Rich",
    "description":"This is a description",
    "url":"http://www.google.com",
    "fields": [
        {
            "name":"field1",
            "value": "some value",
            "inline": "true"
        },
        {
            "name":"field2",
            "value": "another value",
            "inline": "true"
        }
     ]
  }
}

谢谢。

0 个答案:

没有答案