Posts tagged with .net

After my research it is very hard to pass this(I mention below) step to use Graph API.

Business verification This is required to get access to data from users (for some apps this is called advanced access). Only people with full control of a Business Account can complete this process. Learn more about business verification.

Is there any way or package to get data from facebook in .net platform?

Good morning i having a problem with google Ads api. I am coding with .net environment with client library provided by google and i followed the documentation on google site to configure api request to create campaign, group and ads automatically. I did a simple test site to test api but execution stops or better never stop but it seems in a infinite loop after call of line:

  MutateCampaignBudgetsResponse response = budgetService.MutateCampaignBudgets(customerId.ToString(), new CampaignBudgetOperation[] { budgetOperation }); 

I can't solve this problem because no exception or error is thrown. This is the link of google documentation i have followed: https://developers.google.com/google-ads/api/docs/start Thank you

I want to develop a console application that pulls all campaigns under adwords accounts using Google Ads Api. But I could not pass the authentication step.

I do not fully understand whether I should use the Service Account or Desktop Application Flow for this process.

GoogleAdsConfig config = new GoogleAdsConfig()             {                 DeveloperToken = "Dev_token",                 OAuth2Mode = Google.Ads.GoogleAds.Config.OAuth2Flow.APPLICATION,                 OAuth2ClientId = "client_Id",                 OAuth2ClientSecret = "secrret",                 OAuth2RefreshToken = " refresh_token",              }; GoogleAdsClient client = new GoogleAdsClient(config); GoogleAdsServiceClient googleAdsService = client.GetService(Google.Ads.GoogleAds.Services.V10.GoogleAdsService); googleAdsService.SearchStream(AdwordsClientId, query,                 delegate (SearchGoogleAdsStreamResponse resp)                 {                     foreach (GoogleAdsRow adsRow in resp.Results)                     {                      }                 }             ); 

When I try as above, I get the following error

Google.Apis.Auth.OAuth2.Responses.TokenResponseException: Error:"unauthorized_client", Description:"Unauthorized", Uri:""

What paths should i follow? Thank you.

I am using .net client library to access google ads API using C# .NET.

I have configured 'Installed App' account in following order:

  1. Configured Manager Account for Developer Token.
  2. Created oAuth credentials using Manager Account and developer console
  3. Created test manager account (test Account isn't linked to Ads account).
  4. Enabled Ads API from Ads Console.
  5. Placed configuration in App.Config

App.Config configuration:

    <add key = 'OAuth2Mode' value = 'APPLICATION' />     <add key = 'OAuth2ClientId' value = 'OAUTH-CLIENT-ID' />     <add key = 'OAuth2ClientSecret' value = 'SECRET' />     <add key = 'OAuth2RefreshToken' value = 'REFRESH-TOKEN' />     <add key="DeveloperToken" value="DEV-TOKEN" /> 

I got refresh token from adwords client-library OAuthTokenGenerator.exe using Test account.

Here is my code to access Ads API:

 public static void GetCampaigns(GoogleAdsClient client, long customerId)  {       client.Config.LinkedCustomerId = customerId.ToString();       GoogleAdsServiceClient googleAdsService = client.GetService(Services.V9.GoogleAdsService);       string query = @"SELECT                             campaign.id,                             campaign.name,                             campaign.network_settings.target_content_network                         FROM campaign                         ORDER BY campaign.id";             try             {                 // Issue a search request.                 googleAdsService.SearchStream(customerId.ToString(), query,                     delegate (SearchGoogleAdsStreamResponse resp)                     {                         foreach (GoogleAdsRow googleAdsRow in resp.Results)                         {                             Console.WriteLine("Campaign with ID {0} and name '{1}' was found.",                                 googleAdsRow.Campaign.Id, googleAdsRow.Campaign.Name);                         }                     }                 );             }             catch (GoogleAdsException e)             {                 Console.WriteLine("Failure:");                 Console.WriteLine($"Message: {e.Message}");                 Console.WriteLine($"Failure: {e.Failure}");                 Console.WriteLine($"Request ID: {e.RequestId}");                 throw;             }         } 

However i am receiving this exception on calling API:

 Status(StatusCode="Unauthenticated", Detail="Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.", DebugException="Grpc.Core.Internal.CoreErrorDetailException: {"created":"@1643028386.159000000","description":"Error received from peer ipv4:142.250.181.106:443","file":"..\..\..\src\core\lib\surface\call.cc","file_line":1070,"grpc_message":"Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.","grpc_status":16}") 

can anyone guide me what am i missing in this configuration?

I am currently trying to integrate single Google Ads account for my client using RestSharp in C# (don't want to use client libraries). I have found the useful link to generate access token by providing client ID , Client secret and Refresh token.

https://developers.google.com/google-ads/api/docs/rest/auth

I am now trying to test on Postman first before I start developing code in C# but failing to get access token. The screen shot below shows the call I am doing to get access token using Post man.

I also tried CURL in postman which was mentioned in the link above but getting the same error.

FYI it is a Desktop app chosen in google console to generate client ID and secrete because I will be creating console app to integrate Google Ads API.