Questions tagged [bing-ads-api]

Bing Ads is a pay-per-click (PPC) advertising platform used to display ads based on a user's search query. For advertisers placing a large number of ads or developers building advertising tools, the Bing Ads API provides a programmatic interface to Bing Ads.

Microsoft Advertising is a pay-per-click (PPC) advertising platform used to display ads based on a user's search query. For advertisers placing a large number of ads or developers building advertising tools, the Bing Ads API provides a programmatic interface to Microsoft Advertising.

For more information and support see the Microsoft Advertising Developer Documentation Hub.

84 questions
6
votes
3 answers

Bing Ads API V11 Exception : Invalid client data. Check the SOAP fault details for more information

I am using BingAds-PHP-SDK to get authenticated user detail. Firstly done Authentication with OAuth successfully and get authentication token and refresh token. But when call GetUser() returning following Exception. Main Exception detail: stdClass…
kupendra
  • 1,002
  • 1
  • 15
  • 37
4
votes
1 answer

Bing Ads API v2 oAuth2

I have a Google Appsscript code using oAuth2 to connect to Bing Ads API. It goes like: OAuth2.createService(connector.OAUTH.serviceName) .setAuthorizationBaseUrl(connector.OAUTH.authorizationURL) .setTokenUrl(connector.OAUTH.tokenURL) …
Amit
  • 5,924
  • 7
  • 46
  • 94
4
votes
1 answer

Connecting Bing Ads API using node-soap

I am trying to connect to bing ads soap api using node-soap. I have created the request as suggested in bing documentation. But each time I try to connect the response states the Invalid credentials (Error code - 105) Message - Authentication…
Dpk
  • 41
  • 1
  • 4
3
votes
2 answers

Microsoft Live Connect for Bing Ads OAuth 2.0 without browser

My overall goal is to be able to automatically download a daily report using the bing ads API. To do this, I need to authenticate with OAuth (the old PasswordAuthentication method doesn't work because I have a new microsoft account). I have been…
marengaz
  • 1,639
  • 18
  • 28
2
votes
1 answer

Use existing Bing Ads API access token in new Authentication

I'm entering a method, and want to create a new Bing Ads API CampaignManagementService object. var _campaignManagementService = new BingAds.ServiceClient(authorizationData,…
Beska
  • 12,445
  • 14
  • 77
  • 112
2
votes
1 answer

How to debug a 202 HTTP Status Code when using Bing Ads SOAP API?

I'm trying to use the Microsoft Bing Ads' Reporting API to gather ad performance data such as clicks, spend, etc. programmatically. Below, I describe the steps taken. The issue is that after following the steps I don't get the expected SOAP…
dhaval
  • 23
  • 4
2
votes
1 answer

How Can I Filter Based on Metrics in the Bing Ads API?

I'm using the Bing Ads Python SDK and I'm trying to get an ad report showing the cost data for each ad for each day. I can successfully query the AdPerformanceReportRequest service and get all the ads and their metrics back. But I'm getting back all…
Dave Davis
  • 844
  • 1
  • 9
  • 19
2
votes
1 answer

Bing Ads API Quickstart: for use by Microsoft Account users only. Please use the /consumers endpoint to serve this request

Following this guide: https://learn.microsoft.com/en-us/advertising/guides/get-started?view=bingads-13 I've got a running PowerShell script which successfully takes me through a full MS account login in-browser. This winds up at a URL as described…
BobRz
  • 470
  • 5
  • 11
2
votes
1 answer

How do I subscribe to or enable my Azure app for Bing Ads?

I'm sending the user to https://login.microsoftonline.com/common/oauth2/v2.0/authorize?scope=https://ads.microsoft.com/ads.manage%20offline_access&client_id=myappid&response_type=code&redirect_uri=https://asdlkfjalsdjkf.com/callback and after they…
Chris
  • 4,643
  • 6
  • 31
  • 49
2
votes
1 answer

Bing ads - Upload offline conversion

I am trying to upload my offline conversions to bing ads through API. I am using below code. And for now I am using sandbox account to test it. val authorizationData = AuthorizationData().apply { developerToken = "BBD37VB98" authentication…
SBM
  • 87
  • 10
2
votes
2 answers

How to check SOAP fault in python when using suds?

Trying to use Bing Ads Python API, which uses suds, and I am very green about this concept. I frequently encounter an error message as: Invalid client data. Check the SOAP fault details for more information I know this probably means my request…
Psidom
  • 209,562
  • 33
  • 339
  • 356
2
votes
1 answer

In Microsoft BingAds what will be here $developerToken

In Bing ads i know all my credentials like developer_token_id, account_id etc. but how do i set in my php file like $AuthenticationToken = $_SESSION['access_token']; This 3 variables are not in session. $DeveloperToken = "
Ganesh Mulay
  • 161
  • 2
  • 15
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
1 answer

Bing Ads Java API BudgetSummaryReportRequest example code

I'm trying to run basic report download example from Bing Ads documentation and I managed to modify the example code to download several other report types by changing the getReportRequest() method. The one report type that I'm…
grepe
  • 1,897
  • 2
  • 14
  • 24
1
vote
1 answer

Microsoft/Azure OAuth failing, my organization lacks a service principal

I've been trying to use the Bing Ads API, but can't even make it past the first step. I've followed these steps to the letter, but am getting stuck at the part where I need to ask for user consent. I've created an app, and copied all the details…
1
2 3 4 5 6