The Bing Application Programming Interface (API), enables developers to programmatically submit queries to and retrieve results from the Microsoft Bing Search Engine.
Questions tagged [bing-api]
739 questions
2
votes
1 answer
Populate polygon from Microsoft.Maps.WellKnownText [ WKT ] on Bing map
I am trying to populate polygon on Bing map from the code below. But it doesn't draw polygon on the map at all. Please check the code below and let me know what am I missing ?
Please note the credentials I set xxxx for security…

user740022
- 39
- 1
- 8
2
votes
1 answer
Verbatim search in azure/cognitive/bing web search (API, not website)
I cannot find any option to achieve a verbatim azure/cognitive/bing Web search.
In my case the difference is trying to sift through tens of millions of irrelevant search results to find the 10 results that actually match my query literally.
Even…

pascal
- 365
- 1
- 3
- 16
2
votes
1 answer
failed to open stream, permission denied even tho permissions are set
I'm working with the bing-ads api and try to download a report to a local folder.
I already found out the user that is executing php using
which resulted in "dl-dominikl-pc\dolo"
I gave that user full control of the…

jogoe
- 482
- 6
- 18
2
votes
1 answer
Ocp-Apim-Subscription-Key in header of AJAX Bing web search API requests
We're working to switch from Google CSE to Bing's Web Search API.
The Ocp-Apim-Subscription-Key is visible in a request header (called with an AJAX request).
How do we protect it from use by a third party?
(Note: We don't have any experience with…

Florian Térisse
- 33
- 3
2
votes
1 answer
voice recognition api "bing" in python is very slow
I am using the following code to use voice recognition in python
import speech_recognition as sr
# obtain audio from the microphone
r = sr.Recognizer()
with sr.Microphone() as source:
r.adjust_for_ambient_noise(source)
print("Say something!")
audio…

Ahmed Hassaan
- 99
- 1
- 12
2
votes
3 answers
Get list of Local Businesses using Bing Maps Search service API
I am developing a Windows Phone 7 Silverlight application that currently displays a map that show's the user where they are by getting the coordinates from location services. I can get an address using bing Reverse geocoding API.
I would like to…

Fishcake
- 10,496
- 7
- 44
- 72
2
votes
3 answers
Is there a Rails Gem for the Microsoft Cognitive Services Image Search API - V5?
I'm looking to use Bing's APIs to perform an image search. It seems the best image search option available is MSFT's Cognitive Services Image Search API -…

AnApprentice
- 108,152
- 195
- 629
- 1,012
2
votes
1 answer
Does Bing spell check API have an additional length restriction for mode = spell?
The Bing spell check API has a 10,000 char limit for the chunk of text that the request would like to do a spell check [mode=spell] or proof read [mode=proof(default)].
However I am running into an issue where a chunk of misspelt text clearly under…

7hacker
- 1,928
- 3
- 19
- 32
2
votes
1 answer
java.lang.NoClassDefFoundError: Could not initialize class
I'm trying to download a report from BingAds. My code works inside IDEA downloading the report, no big issue. When I try to make it run inside sbt like:
H24_BING_CONFIG=/home/oleber/del/develop_bing.json sbt clean 'project importerBing' 'run'
The…

oleber
- 1,089
- 4
- 12
- 25
2
votes
2 answers
bing search api v5 "__next" replacement?
i'm working on the migration of my webstite form the Bing Azure API (v2) to the new Bing V5 search API.
On the old API, an object use this "__next" to tell if there's something else after him or not.
But on the new API the json do not return this…

tonarii
- 25
- 6
2
votes
1 answer
How to Check Remaining Quota for Bing Web Search API v5.0
I'm trying to find the way to check remaining monthly quota for Bing Web Search API v5.0 , against my specific Api Key xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.
i previously doing this for v2 apis .
I want to know if there's any way to find this.

Haseeb
- 2,214
- 1
- 22
- 43
2
votes
1 answer
News Search API V5 paging results with offset and count
From the documentation here: https://msdn.microsoft.com/en-us/library/dn760793.aspx
It says:
totalEstimatedMatches:
The estimated number of news articles that are relevant to the query. Use this number along with the count and offset query…

user3786924
- 37
- 8
2
votes
1 answer
When using BING SEARCH API, how do you omit duplicate results?
I built a python 2.7 BING SEARCH API pull, that returns 50 counts per page, and paginates by changing the offset value by a value of 50 each time. My results are written to a JSON file.
I am specifying a User-Agent and X-Search-ClientIP in the…
2
votes
1 answer
PyBingSearch Module: Bing API error
I am trying to use the PyBingSearch module from https://github.com/tristantao/py-bing-search to use the Bing API to return search results. In the github page they have an example of how to use it that goes.
from py_bing_search import…

Jstuff
- 1,266
- 2
- 16
- 27
2
votes
0 answers
IOS (Objective C) and Bing Translation API - Encoding Issue
I am running into URL encoding issue while connecting to Microsoft translation api from the objective c code.
The (\n) are not getting encoded properly. Below is my code:
This is how I encode the string in IOS code before hitting…

Sharad Kumar
- 21
- 1