Quantcast
Channel: Bing search API and Azure - Stack Overflow
Browsing all 8 articles
Browse latest View live

Answer by kishore chowdary for Bing search API and Azure

you can use bellow code to get bing search results $acctKey = 'Your account key here';$rootUri = 'https://api.datamarket.azure.com/Bing/Search';$query = 'Kitchen';$serviceOp ='Image';$market...

View Article



Answer by Ritesh for Bing search API and Azure

http://www.guguncube.com/2771/python-using-the-bing-search-apiit contains python code to query the bing and this is according to latest new API (Windows Azure Marketplace)# -*- coding: utf-8 -*-import...

View Article

Answer by Websirnik for Bing search API and Azure

Here is the example of how to call Bing/Azure API using Unirest library.require_once '/path/to/unirest-php/lib/Unirest.php';$accountKey = "xxx";$searchResults =...

View Article

Answer by Kailash Yadav for Bing search API and Azure

Here is a working example of the Search API just replace "XXXX" with your access key. Even I wasted quite a few hours trying to get it to work using cURL but it was failing because of...

View Article

Answer by Jim for Bing search API and Azure

None of the above worked for me. Im running MAMP, this may be relevant. Try the below:$accountKey = '=';function sitesearch ($query, $site, $accountKey, $count=NULL){ // code from...

View Article


Answer by Andrès Mauricio Peña Carmona for Bing search API and Azure

Don't forget to put this:base64_encode("ignored:".$accountKey)instead of:base64_encode($accountKey . ":" . $accountKey)

View Article

Answer by John C for Bing search API and Azure

Documentation for new services can get a bit interesting - especially in the rabbit-warren of MSDN. The most clear explanation I can find is on the Migration Guide from this Bing Search API page. Best...

View Article

Bing search API and Azure

I am trying to programatically perform a search on Microsoft Bing search engine.Here is my understanding:There was a Bing Search API 2.0 , which will be replaced soon (1st Aug 2012)The new API is known...

View Article

Browsing all 8 articles
Browse latest View live


Latest Images