Questions tagged [bing-api]

The Bing Application Programming Interface (API), enables developers to programmatically submit queries to and retrieve results from the Microsoft Bing Search Engine.

739 questions
2
votes
2 answers

Replace single backslash escape with double backslash in JavaScript

I'm using json result from the Bing Search API. In the result, the double quotes is escaped by a single backslash. Javascript however, doesn't accept this. It requires me to escape the double quotes using double backslash. So, my question is that…
grindel
  • 29
  • 1
  • 6
2
votes
1 answer

Bing Ads API: The account ID is invalid

We are facing a problem with Bing Ads API version 9 and 10. We are using the ConstructWithAccountAndCustomerId() method of the ClientProxy class, providing a valid DeveloperToken, AccountId, and AuthenticationToken (OAuth), like so: $proxy =…
camursm
  • 63
  • 1
  • 8
2
votes
0 answers

Bing Translator API with Coldfusion

In my coldfusion application im using Microsoft Bing Translation API. To be honest I don't know where to start? let me write what I have already done. Registered (https://datamarket.azure.com/account) Got 3 things from Microsoft Primary Account…
Amir
  • 21
  • 3
2
votes
1 answer

Bing map supported culture

I am using bing map in silverlight application and having issues in localizing the tile culture. I want to support 3 different bing map tiles culture which are English, Japanese and Chinese (Traditional). For changing culture of tiles following code…
2
votes
1 answer

Android: Bing image search result customization

I am implementing the Bing search for image searching. I refered this link, and change my response to JSON. It works and the result is like: { "d": { "results": [{ "__metadata": { "uri":…
Manoj Fegde
  • 4,786
  • 15
  • 50
  • 95
2
votes
1 answer

How to get Authorization code in Bing Ads Api for long term authentication

How to get authorization code for long term authentication. I am using Bing Ads API v 9.0. Here is my Code. string urlstring = "https://login.live.com/oauth20_authorize.srf?client_id=" + ClientId +…
Musakkhir Sayyed
  • 7,012
  • 13
  • 42
  • 65
2
votes
2 answers

VBA code using XMLHttpRequest always returns #VALUE! in Excel

I'm trying to get the address in https://dev.virtualearth.net/REST/v1/Locations/40.6718266667,-73.7601944444?o=xml&key=AqF-lvBxcTAEbhY5v0MfOHxhplD5NyaznesQ1IA5KS_RNghU1zrDiYN704mlrc8A That's the ("//Location/Name") The code is : Function…
Reed92
  • 43
  • 4
2
votes
0 answers

Failed to connect ... port 80: Timed out, R connection to a Bing API

I am using the function geroute from package {taRfix.geo} , it extracts data from a Bing map API, here is a simple example x <- georoute( c("3817 Spruce St, Philadelphia, PA 19104", "9000 Rockville Pike, Bethesda, Maryland 20892"),…
Mouad_Seridi
  • 2,666
  • 15
  • 27
2
votes
1 answer

How to restrict Bing Search API Queries by language & region

Using Bing Search API, is there any way to restrict searches by country? That is, an equivalent of Google Custom Search Engine's 'cr' parameter? For instance, let's say I only want to find web pages from Spain that are available in English. With…
bsuire
  • 1,383
  • 2
  • 18
  • 27
2
votes
0 answers

Bing Ads API Ruby Support in v9?

Does anyone know if Bing removed Ruby support in v9 of their Ads API? It looks like this page is gone now - Getting Started with Ruby. I also don't see any Ruby examples past what seems to be v8.
Tom Hammond
  • 5,842
  • 12
  • 52
  • 95
2
votes
0 answers

Bing Web Search Code works in console app but not MVC

I'my trying to use the Bing Search API in my MVC project. What's odd is that when I run it through a console application I get the expected results, however when I try to run it online I get no results when I step into the program and look at the…
BryanP
  • 330
  • 1
  • 5
  • 15
2
votes
0 answers

Translating with bing using R. Error: signature "raw", "missing"

I'm new to R and I'm trying to access Microsoft translator using the translate R package for R. I am able to establish a connection but I get the error : Error in (function (classes, fdef, mtable) : unable to find an inherited method for…
Fraous
  • 21
  • 5
2
votes
2 answers

How do i return JSON results from BING Search Engine API

At the moment i am only able to do my searches based on logging in to datamarket azure. Results returned are formatted in a table form and i dont fidn any way to return them in JSON format. A link is displayed after results are returned but when…
user3809384
  • 111
  • 1
  • 4
  • 10
2
votes
1 answer

Python program to search videos using Bing

I have been trying to search videos using bing search engine. But every-time I try I get error HTTPError:HTTPError 403:Forbidden import urllib import urllib2 import json def main(): query = "'pyscripter'" print bing_search(query,…
Aaron Misquith
  • 621
  • 1
  • 7
  • 11
2
votes
2 answers

Alternative to hard coded password

I am writing a java program that uses the Bing Api. I recently decided to open source my code at code.google.com. However, I am looking for an alternative to hardcoding the key. Does anyone have any suggestions?
Kurtoid
  • 217
  • 5
  • 15