Skip to content

Commit 9d50491

Browse files
authored
Merge pull request #81 from wiazur/patch-41
Updated key/endpoint
2 parents 66f0b24 + 899fe12 commit 9d50491

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

nodejs/Search/BingImageSearchv7.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ let https = require('https');
99
// *** Update or verify the following values. ***
1010
// **********************************************
1111

12-
// Replace the subscriptionKey string value with your valid subscription key.
13-
let subscriptionKey = 'enter key here';
12+
// Add your Bing Search V7 subscription key to your environment variables.
13+
let subscriptionKey = process.env['BING_SEARCH_V7_SUBSCRIPTION_KEY']
1414

15-
// Verify the endpoint URI. At this writing, only one endpoint is used for Bing
16-
// search APIs. In the future, regional endpoints may be available. If you
17-
// encounter unexpected authorization errors, double-check this host against
18-
// the endpoint for your Bing Search instance in your Azure dashboard.
19-
let host = 'api.cognitive.microsoft.com';
15+
// Add your Bing Search V7 endpoint to your environment variables.
16+
let host = process.env['BING_SEARCH_V7_ENDPOINT']
2017
let path = '/bing/v7.0/images/search';
2118

2219
let term = 'puppies';

0 commit comments

Comments
 (0)