How can I search for Bing for images using keywords?
I can search Google using:
import urllib2 import json credentialGoogle = '' # Google credentials from: https://console.developers.google.com/ searchString = 'Xbox%20One' top = 20 offset = 0 while offset < top: url = 'https://ajax.googleapis.com/ajax/services/search/images?' + \ 'v=1.0&q=%s&start=%d&userip=%s' % (searchString, offset, credentialGoogle) request = urllib2.Request(url) response = urllib2.urlopen(request) results = json.load(response) # process results offset += 4 # since Google API only returns 4 search results at a time
What would be the equivalent for Bing? Presumably this started with:
keyBing = '' # Bing key from: https://datamarket.azure.com/account/keys credentialBing = '' # same as key? searchString = '%27Xbox+One%27' top = 20 offset = 0 url = 'https://api.datamarket.azure.com/Bing/Search/Image?' + \ 'Query=%s&$top=%d&$skip=%d&$format=json' % (searchString, top, offset)
but how are credentials configured?
source share