- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图将 django 设置为电报机器人的 webhooks。我使用以下命令创建了一个 ssl 证书:
openssl genrsa -out webhook_pkey.pem 2048
openssl req -new -x509 -days 3650 -key webhook_pkey.pem -out webhook_cert.pem
# In Common Name i type a server IP address
设置在端口 800 上运行 gunicorn,将 nginx 中的 proxy_pass 设置为 localhost:800。网站工作正常,我可以在浏览器上打开它并查看我的主页。Gunicorn 以该命令开始:
gunicorn wsgi -b 127.0.0.1:800
# wsgi is django generated wsgi.py file
我的 nginx.conf 文件:
upstream django {
server 127.0.0.1:800;
}
server {
listen 80;
listen 443 ssl;
server_name 111.111.111.111 # these ip addres of my server
ssl_certificate /path/to/webhook.cert;
ssl_certificate_key /path/to/webhook.pkey;
charset utf-8;
client_max_body_size 10M;
location /media {
alias /path/to/media;
}
location /static {
alias /path/to/static;
}
location / {
proxy_pass http://127.0.0.1:800;
proxy_set_header Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Protocol $scheme;
}
}
我使用的是 pyTelegramBotApi。
from telebot import TeleBot
bot = TeleBot(token)
cert = open('webhook.cert', 'r')
bot.remove_webhook()
bot.set_webhook("https://111.111.111.111:80/user_bots/, certificate=cert)
# I'm trying a differents ports
cert.close()
user_bots
- 它是在 django 中查看的一些路径,其中记录了一些来自请求的数据在我运行这段代码后,我在 nginx access.log
中看到了这个:
149.154.167.200 - - [26/Oct/2017:15:36:13 +0000] "\x16\x03\x01\x00\xC3\x01\x00\x00\xBF\x03\x03\x19\xB3\x937v\x14\xF0\xDCj\xC1\x93\xB2?\xF9tOK\x10\x9FA\x87|\xA9!\x81e\xCFC\xDD\x92\x94\x97\x00\x008\xC0,\xC00\x00\x9F\xCC\xA9\xCC\xA8\xCC\xAA\xC0+\xC0/\x00\x9E\xC0$\xC0(\x00k\xC0#\xC0'\x00g\xC0" 400 182 "-" "-"
# And then many some logs, it stopped after i run bot.remove_webhook()
Google 说 ssl 证书有误。
django urls.py
urlpatterns += url(r'user_bots/(?P<token>[0-9]+:\w*)/.*$', views.bot_test, name="bot_test")
bot_test View
:
def bot_test(request, token):
logging.info(f"Request from bot with token {token}")
return HttpResponse("OK")
我需要在我的 Django 应用程序中选择机器人需要通过它的标记引用的内容。
我被困住了 :( 我整天都在努力解决这个问题,也许有人可以帮助我?
最佳答案
解决方案很简单:)替换
cert = open(PATH_TO_CERT, 'r')
bot.set_webhook(url=f'https://111.111.111.111:80/user_bots/{token}/',
certificate=cert)
到
bot.set_webhook(url=f'https://111.111.111.111:443/user_bots/{token}/',
certificate=open(PATH_TO_CERT, 'r')
一切正常!
关于python - Django+gunicorn+nginx telegram webhook ssl 麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46958970/
我想知道是否有任何方法可以为所有意图激活 webhook(除了一个一个激活它)。谢谢! 最佳答案 目前还没有这样的功能,但我遇到了类似的问题,这就是我解决它的方法: 下载所有意图的zip文件 写一个程
谁能在最基本的层面上解释一下 Incoming webhook、Outgoing webhook 和 O365 webhook 之间的区别 最佳答案 Webhooks 是一种轻型 HTTP 模式,用于
好吧,这可能 super 简单,但我只是没有足够的背景知识来确定: 如果我定义了一个 webhook 回调(例如,OpenAPI 中的回调):我可以从常规网页使用该回调吗? 我会假设是的,否则有什么意
我正在尝试设置 Grafana 以将 webhook 发送到 Microsoft Teams。我可以通过终端 curl 到地址,但不能通过 Grafanas 界面。 我将 URL 添加到 Grafan
我正在玩Paypal REST(php)环境,我喜欢玩沙盒webhooks。 是否可以将Paypal沙箱Webhooks与本地设置一起使用? http://localhost/test 是无效的网址
使用 slack webhooks,我可以使用消息中的简码发送表情符号: curl -X POST --data-urlencode "payload={\"channel\": \"#my_noti
我们想将Slack Webhook(传出Webhook)与内部Web服务一起使用。 我们公司位于防火墙后面,因此必须将外部连接列入白名单。 Slack似乎有多个地址,它将从中发送API请求,并且似乎没
我们目前正在实现 Mailgun 的 Webhook,以将电子邮件回复转换为应用程序中评论线程中的回复。我们设置一条路由来匹配收件人,并将操作设置为 store(notify="https://exa
我可以通过应用程序脚本通过 webhook 将消息发送到聊天室,但是我如何发送回复该消息。这是一种单向聊天。我如何才能通过 webhook 将其作为对话流. 最佳答案 您可以提供一个threadKey
我正在尝试注册一个 evernote webhook。但似乎注册表不起作用。 Evernote webhook 注册表格: 我填写了表格,点击“提交”,但总是得到以下错误响应: {"error":"R
我可以通过应用程序脚本通过 webhook 将消息发送到聊天室,但是我如何发送回复该消息。这是一种单向聊天。我如何才能通过 webhook 将其作为对话流. 最佳答案 您可以提供一个threadKey
我有一个订阅页面提要事件的 webhook。 我希望它告诉我何时在页面或用户管理的页面上创建了公共(public)事件。 应用仪表板告诉我这是将发送给我的 JSON 对象: { "field": "
当我在 google 项目和 API.AI 代理上创建操作时,我使用自己的服务作为 API.AI 实现 webhook。我希望 API.AI 会调用我的 webhook。但是当我通过谷歌上的 Acti
我正在按照本教程在 App Inventor 中发送电子邮件:https://www.hackster.io/taifun/trigger-ifttt-to-send-an-email-using-a
我正在尝试将消息发布到松弛团队中的任何 channel 。 我的 webhook 已正确创建并安装到我的测试团队中。作为安装过程的一部分,我选择了“发布到#channel1” 当我查看权限时,我看到我
我快速浏览了与 Bluesnap webhooks 相关的 IPN 类型和参数 - https://support.bluesnap.com/v2.2.7/docs/ipn-parameter-ref
我有一个 HTML 表格,我正在尝试通过 webhook 将其发布到 Slack。 有没有办法将 HTML 表格发布到 Slack? 这是 HTML 代码: HTML Tabl
我在我的 Slack 工作区中创建了一个传入 Webhook。我正在使用第三方工具将 JSON 对象发布到 Hook url。我想向@user_1 发送通知 我的问题是通知发送到我和该用户@user_
我正在开发一个与 Trello 紧密集成的应用程序,并使用 Trello webhooks 做很多事情。但是,我在 Trello 的开发人员文档中找不到任何地方可能触发 webhook 的“操作”是什
当我创建这篇文章时,我只是在stackoverflow上找到了没有任何回复的帖子...... TelegramBot. "Webhook can be set up only on ports 80,
我是一名优秀的程序员,十分优秀!