I have APS.NET Application and it is deployed on Azure. Application calls Bing Speech API to recognize voice. (Client makes POST request and server calls Bing Speech API for every request).
It looks like this:
ONLY server calls Bing Speech API.
And now in Azure dashboard I see a lot of calls to Bing Speech API without requests to my server, and I don't know who or what it can be. I regenerated Bing Speech API key but it didn't help. Bing Speech quota is limited so it is big and expensive problem.
there are screenshots from dashboard:
Quota has been exceeded:
Thanks for any help and any advice!
Calls Bing Speech API were... calls to getting new access Token. So, it means gettings access token is billable.
I'm going to minimize gettings new tokens in my app to solve my problem.
Thanks.