猿问

如何使用 go 从 azure 队列订阅接收消息

我尝试使用 Go 从 azure 服务总线队列中提取消息。队列主题名称、订阅名称、服务名称和共享访问密钥值是凭据。我没有为此获得正确的示例代码。请帮助我!!



ibeautiful
浏览 122回答 2
2回答

长风秋雁

Go Cloud Development Kit Pub/Sub API 仍在进行中(它是我们较新的 API 之一)。自 2019-01-30 起,有一个pull request出来审核以增加支持,敬请期待!

皈依舞

from azure.servicebus.control_client&nbsp;import ServiceBusServicebus_service=ServiceBusService(service_namespace='<namespace>',&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shared_access_key_name='<key_name>',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shared_access_key_value='<acess_key>')topic_name = "<topic_name>"&nbsp;subscription_name = "<subscription_name>"&nbsp;message = bus_service.receive_subscription_message(topic_name,&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; subscription_name, peek_lock=True)
随时随地看视频慕课网APP

相关分类

Go
我要回答