1

I would like to test cognitive-services "face detect"

(not azure account)

  • now, I am trying to test in API Face Detect online :

https://westeurope.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395236/console

All my keys return 401

Sorry for my bad english : but where I have false ?

With best regards

Francis

Fran6
  • 13
  • 4
  • Use either one of the key only. You can refer to this question http://stackoverflow.com/questions/42123633/access-denied-due-to-invalid-subscription-key-face-api – raditz farhan May 03 '17 at 01:45

1 Answers1

1

Your non-Azure key you've obtained is for the westus region. You therefore have two options:

  • Use the westus API endpoint. This may have latency implications depending on where you are, and where your images are located.

  • Create a Face API account based on an Azure subscription. When you do so, you will be able to obtain a westeurope API key.

cthrash
  • 2,938
  • 2
  • 11
  • 10
  • 1
    Yes ! with westus API endpoint that work ! (not with westeurope API endpoint). Many thanks :good and quick answer ! Regards – Fran6 May 03 '17 at 07:36