我在php上使用webhook制作电报机器人。问题是webhook没有正确设置,idk是什么问题。 我的setwebhook代码:
$ch = curl_init(API_URL);
try {
$cert = new \CURLFile(SSL_KEY);
apiRequest('setWebhook', array('url' => WEBHOOK_URL , 'certificate' => $cert));
echo "webhook set";
} catch (Exception $e) {
echo "error";
}
答案 0 :(得分:5)
您可以通过终端而不是代码设置webhook:
curl -F "url=https://your_domain.com/where-the-script-will-be/bot-script.php" -F "certificate=@/location/of/cert/certificate.crt" https://api.telegram.org/bot000000000:AAAAa0aAA_aaA-Aaaa0A0Aa_a0aa0A0AAAA/setWebhook
这对我自己的项目没有任何问题