使用任务队列中的 GAE 通道

发布于 2024-10-22 10:02:19 字数 215 浏览 5 评论 0原文

几天来,我一直在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无妨# 2024-10-29 10:02:19

它对我来说效果很好。确保您在两者中使用相同的客户端密钥 keyid 进行发布,

channel.send_message(keyid,message_string)

token = channel.create_channel(keyid)

确保您没有使用 token 作为 send_message() 中的第一个参数>。

我会在 python 代码和 中使用它的任何地方记录(使用 logging.info()keyid (和 token) console.log() javascript 代码中的 token 以确保它们全部匹配应有的位置。

It works fine for me. Make sure you are publishing using the same client key keyid in both

channel.send_message(keyid,message_string)

and

token = channel.create_channel(keyid)

i.e. make sure you are NOT using token as the first parameter in send_message().

I would log (using logging.info()) the keyid (and token) everywhere you use it in the python code and console.log() the token in the javascript code to make sure they all match where they should.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文