我想对Laragon
的{{1}}机器人使用Windows Telegram
。
我使用let's encrypt
来激活webhook
。
我使用手动验证创建了SSL certificate
个下载的zip证书文件,并将其替换为
.well-known
现在,当我想使用https://developerpiel.com(我的域)浏览器时,向我展示/etc/appache2/sll.
。我用
ssl is actived by letsencrypt
及其返回我
https://api.telegram.org/bot(token)/setWebhookurl=https://developerpie.com/robot/bot.php
但是当我想使用{
"ok": true,
"result": true,
"description": "Webhook is already set"
}
api方法时,无法从Telegram
webhook接收任何数据。
我认为如果请求自动重定向到Telegram
而不是HTTPS
如何在Windows上用HTTP
对其进行配置?
我找到了答案编辑的一半:
Laragon
我现在在加载网站时使用此配置,自动浏览器会自动重定向到<VirtualHost *:80>
ServerName www.developerpie.com
Redirect permanent / https://www.developerpie.com/
</VirtualHost>
<VirtualHost _default_:443>
<Directory "C:/laragon/www/">
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile C:/laragon/etc/ssl/laragon.crt
SSLCertificateKeyFile C:/laragon/etc/ssl/laragon.key
</VirtualHost>
,但Telegram Web钩子仍然无法工作
答案 0 :(得分:2)
这是来自Telegram
服务器的结果:
{
"ok": true,
"result": {
"url": "https://developerpie.com/robot/bot.php",
"has_custom_certificate": false,
"pending_update_count": 21,
"last_error_date": 1566230202,
"last_error_message": "SSLrror {error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed}",
"max_connections": 40
}
}
,此图片是SSLShoppre.com进行的SSL测试的结果 因此请遵循此link。