使用任务队列中的 GAE 通道
几天来,我一直在尝试使用 GAE 中的 Channel.send_message API(通过 Python)在 TaskQueue 进程完成时向客户端发送消息。它就是行不通。
我可以使用另一个请求中的 send_message ,它工作正常并且已收到。但是当从任务队列调用 send_message 时什么也没有。
我已经在本地尝试过并部署到 GAE full 上。这是不受支持的场景吗?
I have been trying for some days to use the channel.send_message
API in GAE (via Python) to send a message to a client when a TaskQueue process has finished. It just WON'T work.
I can use send_message from another request and it works fine and is received. But nothing when send_message is called from a TaskQueue.
I've tried this both locally and deployed to GAE full. Is this not a supported scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它对我来说效果很好。确保您在两者中使用相同的客户端密钥
keyid
进行发布,即
确保您没有使用
token
作为send_message()
中的第一个参数>。我会在 python 代码和
中使用它的任何地方记录(使用
javascript 代码中的logging.info()
)keyid
(和token
) console.log()token
以确保它们全部匹配应有的位置。It works fine for me. Make sure you are publishing using the same client key
keyid
in bothand
i.e. make sure you are NOT using
token
as the first parameter insend_message()
.I would log (using
logging.info()
) thekeyid
(andtoken
) everywhere you use it in the python code andconsole.log()
thetoken
in the javascript code to make sure they all match where they should.