我试图澄清是否有可能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"
}
]
}
}
谢谢。