【发布时间】:2020-03-31 19:18:12
【问题描述】:
我正在尝试让表单将信息发送到不和谐频道,但我无法建立 webhook 连接,因为它一直在说 {"message": "Cannot send an empty message", "code": 50006}
这是我的代码:
$url = "https://discordapp.com/api/webhooks/xxxxxxxxx";
$hookObject = json_encode([
"content" => "A message will go here",
"username" => "MyUsername",
], JSON_FORCE_OBJECT);
$ch = curl_init();
var_dump($hookObject);
curl_setopt_array( $ch, [
CURLOPT_URL => $url,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $hookObject,
CURLOPT_HTTPHEADER => [
"Length" => strlen( $hookObject ),
"Content-Type" => "application/json"
]
]);
$response = curl_exec( $ch );
curl_close( $ch );
【问题讨论】: