Azure-Samples / cognitive-services-REST-api-samples

This is a repo for cognitive services REST API samples in 4 languages: C#, Java, Node.js, and Python.
https://azure.microsoft.com/en-us/services/cognitive-services/
Other
222 stars 269 forks source link

Incorrect endpoint in Bing Image Search Tutorial #129

Closed domingogallardo closed 1 year ago

domingogallardo commented 3 years ago

This issue is for a: (mark with an x)

- [x] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)

Minimal steps to reproduce

The Bing Web Image Search Tutorial (Tutorials/Bing-Image-Search) doesn't get any image.

The endpoint in the public/js/script.js is not correct.

BING_ENDPOINT = "https://api.cognitive.microsoft.com/bing/v7.0/images/search";

Mention any other details that might be useful

The correct endpoint is:

BING_ENDPOINT = "https://api.bing.microsoft.com/v7.0/images/search";