I am using Face API in our solution for last couple of months and it was working fine. Starting yesterday, it is giving me QuotaExceeded exception while creating group using below function:
faceServiceClient.CreatePersonGroupAsync(groupName, groupName)
Before creating group, I am checking and deleting group, if exists:
faceServiceClient.GetPersonGroupAsync(groupName)
faceServiceClient.DeletePersonGroupAsync(groupName)
Can anyone help me why it started giving exception though it is working for last couple of months?
I tried on two subscription keys. One which I am currently using (subscribed via Azure), and another one (free trial) which I used last month and didn't use after that. It is giving QuotaExceeded exception for both.
Can anyone please help?