azureazure-web-app-servicebing-speech

Bing Speech API - unexpected calls


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:

enter image description here

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:

enter image description here

enter image description here

Quota has been exceeded:

enter image description here

Thanks for any help and any advice!


Solution

  • 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.