2

Is it possible to receive events from Azure Event Hubs using REST API? I have found only send event API in the Azure documentation. How to GET events?

4

1 回答 1

1

REST is not supported on the Event Hubs consumer side. Consumers must use one of these two protocols:

  1. AMQP
  2. Kafka

Please check this sample on sending and receiving events: https://docs.microsoft.com/en-us/azure/event-hubs/get-started-dotnet-standard-send-v2

于 2020-06-22T17:54:17.900 回答