generateForecastCurve empty response

2022-09-08 Thread panu.kuu...@hopkins.fi
Hi, why does the following return empty? POST to https://googleads.googleapis.com/v10/customers/00/keywordPlans/0:generateForecastCurve I am using the customer id directly (not mcc id). I dont get an error but the request doesn't return anything. Thanks for the help. Best Panu

Re: Assignment not allowed to repeated field "conversions" in protocol message object

2022-01-12 Thread panu.kuu...@hopkins.fi
Solution: request.conversions.append(click_conversion) request.partial_failure = True conversion_upload_response = ( conversion_upload_service.upload_click_conversions( request=request, ) ) request.conversions[:0] On Thursday, January 6, 2022 at 6:14:40 PM UTC panu.kuu...@hopkins.fi wrote

Re: Upload Click Conversions: Assignment not allowed to repeated field "conversions" in protocol message object.

2022-01-12 Thread panu.kuu...@hopkins.fi
Solution: request.conversions.append(click_conversion) request.partial_failure = True conversion_upload_response = ( conversion_upload_service.upload_click_conversions( request=request, ) ) request.conversions[:0] On Tuesday, January 11, 2022 at 1:57:29 PM UTC panu.kuu...@hopkins.fi wrote

Re: Upload Click Conversions: Assignment not allowed to repeated field "conversions" in protocol message object.

2022-01-11 Thread panu.kuu...@hopkins.fi
Thanks will do. On Friday, January 7, 2022 at 3:03:47 AM UTC adsapi wrote: > Hi Panu, > > Thank you for sharing the details privately. > > Upon checking, the error appears to be more related to the client library. > That said, I would recommend that you reach out instead to the Python > client

Re: Upload Click Conversions: Assignment not allowed to repeated field "conversions" in protocol message object.

2022-01-06 Thread panu.kuu...@hopkins.fi
Hi Matt, thanks for reaching out so quickly. I have sent you a private message. Best Panu On Thursday, January 6, 2022 at 10:38:58 PM UTC adsapi wrote: > Hi Panu, > > Thanks for reaching out. Can you please privately reply with your complete > request and response logs so that we can take a lo

Assignment not allowed to repeated field "conversions" in protocol message object

2022-01-06 Thread panu.kuu...@hopkins.fi
The code sample in https://developers.google.com/google-ads/api/docs/conversions/upload-clicks?hl=en#python seems to have an issue. This line request.conversions = [click_conversion] returns an error: AttributeError: Assignment not allowed to repeated field "conversions" in protocol message

Upload Click Conversions: Assignment not allowed to repeated field "conversions" in protocol message object.

2022-01-06 Thread panu.kuu...@hopkins.fi
Upload Click Conversions https://developers.google.com/google-ads/api/docs/conversions/upload-clicks?hl=en#python The code example in Python seems to have an issue. request.conversions = [click_conversion] returns an error: AttributeError: Assignment not allowed to repeated field "conversions