Re: Example for ConversionUploadService

2022-05-01 Thread ashish delacon
was this ever resolved?
Because after proper logging with slf4j I can see the error, but the 
problem is that it keeps on retrying, and that's why the program does not 
ever proceed to the next line.

How can this retrying be stopped?
I am trying on v10

On Saturday, June 8, 2019 at 5:16:34 AM UTC+10 Eeshan Kale wrote:

> Hi Peter,
>
> Unfortunately I can't get the logs for that response to pop up. I am 
> certain though the problem is with 
> 'conversionUploadServiceClient.uploadClickConversions(clickConversionRequest)'
>  
> since after this statement, the program flow stops proceeding. I am also 
> seeing a vast number of complains about how the Google Ads API is way 
> slower than the Adwords API, so I wonder if that could be a problem.
>
> I'm still working on trying to get the logs to work, but any error logs 
> for that statement don't seem to be working (all other logs seem to be 
> working fine)
>
>
> On Thursday, June 6, 2019 at 7:56:30 PM UTC-7, adsapiforumadvisor wrote:
>>
>> Hi Eeshan,
>>
>> Thank you for pointing out the exact issue and my apologies for missing 
>> it at the start. So I can better identify what may be causing the issue, 
>> could you provide any error strings or messages?
>>
>> Also, could you confirm if you have already enabled logging for your Java 
>> client library? I asked because any issues with the services should be 
>> captured by the JSON logs and this should help us accurately determine the 
>> cause.
>>
>> Once enabled, you may retry your request and if the issue persists, you 
>> may send to me using the *Reply privately to author* option the 
>> generated JSON logs.
>>
>> Thanks and regards,
>> Peter
>> Google Ads API Team
>>
>> ref:_00D1U1174p._5001UBlcgO:ref
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d0e3ae74-df6f-43df-abc8-889b67b43139n%40googlegroups.com.


Re: Change in Google API Response

2022-05-01 Thread 'Matan Wilchek' via Google Ads API and AdWords API Forum
Hi,

why didn't you just say that you're releasing a new API version (v10.1) and 
the problems are due to integration?

Thanks, Matan

On Friday, April 29, 2022 at 7:30:50 PM UTC+3 adsapi wrote:

> Hi,
>
> Thank you for reaching out. 
>
> To investigate the issue further, could you please provide the complete 
> request 
> 
>  
> and response 
> 
>  
> logs, with the request-id 
> ?
>  
> If you haven't yet, logging can be enabled by navigating to the Client 
> libraries > Your client library (ex. Java) > Logging documentation, which 
> you can access from this link 
> . 
> You can provide it via Reply privately to author option. If this option is 
> not available, then send it instead on this email address 
> googleadsa...@google.com .
>
> Thanks,
> [image: Google Logo] 
> Nirmita 
> Google Ads API Team 
>   
>
>  
>
> ref:_00D1U1174p._5004Q2aOVMx:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e817305e-42bf-49be-be4c-88f221a9e22en%40googlegroups.com.


Re: How to Validate the RefreshToken programmatically in Google Ads API?

2022-05-01 Thread ashish delacon
I am getting the following even though if I use this in uploadconversion, 
it works fine.
{
"error": "invalid_client",
"error_description": "Unauthorized"
}

I want to do the validation so that my uploadconversion doesnt get caught 
into infinite invalid_grant loop , because for some unknown reason 
invalid_grant error put the program into infinite loop of invalid_grant
On Tuesday, March 22, 2022 at 9:29:54 PM UTC+11 adsapi wrote:

> Hi Anurag,
>
> Thanks for getting back to us.
>
> For more details about the refresh token expiration, you may refer to this 
> *document* 
>  from 
> the Google Identity Platform OAuth. However, the access token has an 
> expiration time (based on the *expires_in* 
>  value) after which 
> the token is no longer valid. You can use the refresh token to refresh an 
> expired access token. By default, our client libraries automatically 
> refresh expired access tokens. Also, you may encounter an 'invalid_grant' 
> error whenever the refresh token expires or is not valid in the Google Ads 
> API. you may use the cURL below to check if your refresh token is valid or 
> not:
>
>
> curl \
>
>   --data "grant_type=refresh_token" \
>
>   --data "client_id=CLIENT_ID" \
>
>   --data "client_secret=CLIENT_SECRET" \
>
>   --data "refresh_token=REFRESH_TOKEN" \
>
>   https://www.googleapis.com/oauth2/v3/token
>
>
> Let us know if you have any further questions.
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2Ypmvm:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/95675447-6c58-426e-b294-c6765fa96d72n%40googlegroups.com.


Re: Missing Image Ads in ad_group_ad view

2022-05-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Don,

Thank you for commenting on this forum. I am also a member of the Google Ads 
API team and let me provide support to your concern.

To provide insights to your concern, I am afraid that it is not possible to get 
the ads data which can't be segmented by segments.keyword.info.text because of 
what is discussed in this document. The workaround here is to generate a 
separate report without keyword related segments such as 
segments.keyword.info.text so that the ad information will be returned for the 
ads that can not be segmented by the said field.

Let me know if you have further questions.

Regards,

Ernie John
Google Ads API Team
ref:_00D1U1174p._5004Q2aO8ep:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/rG94j0RB8E6Q004DBtEJOEQt-_LnwRgCmvkQ%40sfdc.net.


budgets API question

2022-05-01 Thread Hwansang Cho
To whom it may concern

Hello. I have a question for google API usage. It will be appreciate if you 
make me clear of this.

1. Customer ID
6820470188

2. Currently using for getting budgets
SELECT 
  account_budget_proposal.id, 
  account_budget_proposal.resource_name,
  account_budget_proposal.proposal_type,
  account_budget_proposal.status,
  account_budget_proposal.approved_spending_limit_micros,
  account_budget_proposal.proposed_spending_limit_micros,
  account_budget_proposal.creation_date_time,
  account_budget_proposal.approval_date_time,
  account_budget_proposal.approved_start_date_time,
  account_budget_proposal.approved_end_date_time,
  account_budget_proposal.approved_end_time_type,
  account_budget_proposal.approved_spending_limit_type,
  account_budget_proposal.proposed_start_date_time,
  account_budget_proposal.proposed_end_date_time,
  account_budget_proposal.proposed_end_time_type,
  account_budget_proposal.proposed_spending_limit_type
FROM account_budget_proposal
WHERE {Where clauses}

3. Reponse
Array
(
  [0] => Array
  (
[id] => 604370333
[name] => ..
[resourceName] => customers/6820470188/accountBudgets/604370333
[status] => APPROVED
[adjustedSpendingLimitMicros] => 118782258
[adjustedSpendingLimitType] => UNSPECIFIED
[totalAdjustmentsMicros] => 1682258
[approvedSpendingLimitMicros] => 11710
[approvedSpendingLimitType] => UNSPECIFIED
[approvedStartDateTime] => 2019-12-24 18:08:15
[approvedEndDateTime] =>
[approvedEndTimeType] => FOREVER
[proposedStartDateTime] => 2019-12-24 18:08:15
[proposedEndDateTime] =>
[proposedEndTimeType] => FOREVER
[billingSetupId] => 604233976
[billingSetupStatus] => CANCELLED
...
  )
  [1] => Array
  (
[id] => 427473773
[name] => ...
[resourceName] => customers/6820470188/accountBudgets/427473773
[status] => APPROVED
[adjustedSpendingLimitMicros] => 25004238
[adjustedSpendingLimitType] => UNSPECIFIED
[totalAdjustmentsMicros] => 4238
[approvedSpendingLimitMicros] => 0
[approvedSpendingLimitType] => UNSPECIFIED
[approvedStartDateTime] =>
[approvedEndDateTime] =>
[approvedEndTimeType] => UNSPECIFIED
[proposedStartDateTime] => 2017-12-15 15:40:09
[proposedEndDateTime] =>
[proposedEndTimeType] => FOREVER
[billingSetupId] => 427414629
[billingSetupStatus] => CANCELLED
...
  )
)

4. Question
The ID, 427473773, is not valid status (expired as I know). But I don't 
know how to distinguish which one is expired with the response. Please let 
me know the way to do it.

Best regards,
Hwan Sang Cho

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/634b50e8-6ab8-4431-8f38-cc3d9dedadf4n%40googlegroups.com.


RE: List Accessible Accounts stuck in error loop

2022-05-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Jack,

Thank you for reaching out. I am a member of the Google Ads API team.

Moving forward to your concern, "I am wondering if there is a way to configure 
the CustomerServiceClient to either disable this feature or change the number 
retry attempts.", I am afraid that there's no possible way to configure the 
CustomerServiceClient in this way. However, this should be implemented on the 
developers end.

Also, please see the statements below:

I noticed in your provided logs that you have encountered the invalid_grant 
error. That said, since this is an issue on implementation of your 
authentication, then I would suggest checking this documentation which contains 
the authentication process.
I also noticed that your request body is empty. That said, please try this java 
code on your end.


Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2aOfyr:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e4dSE0RB8JQP00ramDAzyoQ_Sr5mdOQoUfFw%40sfdc.net.


Re: How to see my access level in GG Console

2022-05-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Martin,

Thank you for providing more details to your concern.

Before proceeding to your concern, I would like to inform you first that I am 
going to delete your latest post as it contains your developer token. Also, 
since your developer token has been exposed privately, then I would suggest 
doing a developer token reset. Please note that a reset will immediately 
invalidate your previous token, so any API requests using the old token will 
fail. However, a reset will not trigger a re-review and approval for the new 
developer token. You can start using the new developer token immediately.

Moving forward, I can see that your developer token already has standard access 
so you shouldn't encounter the said error. With this, could you try the new 
developer token after reset and retry the API request again? If the error 
persists, please provide the complete request and response logs with request ID 
and request header generated on your end so that I can discuss it to the rest 
of the team.

You can provide it via Reply privately to author option. If this option is not 
available, then send it instead on this email address 
googleadsapi-supp...@google.com.

Regards,

Ernie John
Google Ads API Team
ref:_00D1U1174p._5004Q2aNxmu:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/hwB4o0RB8NMU00D04MzYqdSdWmwF_RXtGINA%40sfdc.net.


Re: ImageAd.Name is empty

2022-05-01 Thread Nobuyoshi Shimmen
Hi there!

Is this still an ongoing issue?
It seems like we are encountering the same issue.
We got the complete request and response ready.
How can I share them with Google Ads API Team?

Also, I would like to know about the 'ad_group_ad.ad.image_ad.name' 
definition in more detail.
Is it possible to create image from bytes in Google Ads console? Or is it 
only possible via API?
> The name of the image. If the image was created from a MediaFile, this is 
the MediaFile's name. If the image was created from bytes, this is empty.
https://developers.google.com/google-ads/api/fields/v10/ad_group_ad#ad_group_ad.ad.image_ad.name

Best,

Nobu

2022年3月30日水曜日 22:43:44 UTC+9 adsapi:

> Hi Javier,
>
> Thank you for  reaching out. 
>
> To investigate the issue further, could you please provide the complete 
> request 
> 
>  
> and response 
> 
>  
> logs, with the request-id 
> ?
>  
> If you haven't yet, logging can be enabled by navigating to the Client 
> libraries > Your client library (ex. Java) > Logging documentation, which 
> you can access from this link 
> . 
> You can provide it via Reply privately to author option. If this option is 
> not available, then send it instead on this email address 
> googleadsa...@google.com .
>
> Thanks,
> [image: Google Logo] 
> Nirmita 
> Google Ads API Team 
>   
>
>  
>
> ref:_00D1U1174p._5004Q2YsZSX:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5bba1695-9be9-4159-b69f-51e0ab248afbn%40googlegroups.com.