Re: webhooks for google ads api?

2020-11-15 Thread Ahmed Adly
Hello Bryan, it's me again. just to be 100% clear, what i'm after is to get notifications when specific metrics related to specific campaigns or ads get updated. for example clicks, conversions,... etc. Thank you, On Sunday, November 15, 2020 at 8:32:47 PM UTC-6 Ahmed Adly wrote

Re: webhooks for google ads api?

2020-11-15 Thread Ahmed Adly
20 at 2:24:30 PM UTC-5 Ahmed Adly wrote: > Thank you Bryan very much. > Have a great day. > > On Wednesday, August 19, 2020 at 2:22:39 PM UTC-5 adsapiforumadvisor wrote: > >> Hi Ahmed, >> >> Thank you for reaching out to us. I see that you're asking abo

Re: MCC - get client customer ID and link it under our MCC

2020-11-09 Thread Ahmed Adly
Note: we can use either Node JS or java client library if needed. On Monday, November 9, 2020 at 11:49:57 PM UTC-6 Ahmed Adly wrote: > Hello, > We are creating an app to manage google ads on behalf of our customers. We > have done the following so far: > >- created a manag

MCC - get client customer ID and link it under our MCC

2020-11-09 Thread Ahmed Adly
Hello, We are creating an app to manage google ads on behalf of our customers. We have done the following so far: - created a manager account (MCC) and got it approved - created the UI and flow to get the user to authenticate using google Oauth2 API with the scope 'https://www.googlea

Re: ShoppingProductAdInfo is empty

2020-08-20 Thread Ahmed Adly
Hello Anthony, I tried that and still the same. the code now looks like this: Ad ad = googleAdsRow.getAdGroupAd().getAd(); ShoppingProductAdInfo shoppingProductAd = googleAdsRow.getAdGroupAd().getAd().getShoppingProductAd(); System.out.println(shoppingProductAd.toString()); I tried this versio

Re: webhooks for google ads api?

2020-08-19 Thread Ahmed Adly
Thank you Bryan very much. Have a great day. On Wednesday, August 19, 2020 at 2:22:39 PM UTC-5 adsapiforumadvisor wrote: > Hi Ahmed, > > Thank you for reaching out to us. I see that you're asking about webhooks > for Google Ads API. Are you referring to this >

Re: ShoppingProductAdInfo is empty

2020-08-19 Thread Ahmed Adly
Hello Anthony, I'm already looping through them, Here is the full code: String query = "SELECT ad_group.id, " + "ad_group_ad.ad.id, " + "ad_group_ad.ad.name," + " ad_group_ad.ad.type, " + "ad_group_ad.ad.shopping_product_ad " + " FROM ad_group_ad " + "Where ad_group_ad.ad.type = \"SHOPPING_PRODU

Re: ShoppingProductAdInfo is empty

2020-08-19 Thread Ahmed Adly
Hello Anthony, I'm already looping through them, Here is the full code: String query = "SELECT ad_group.id, " + "ad_group_ad.ad.id, " + "ad_group_ad.ad.name," + " ad_group_ad.ad.type, " + "ad_group_ad.ad.shopping_product_ad " + " FROM ad_group_ad " +

webhooks for google ads api?

2020-08-19 Thread Ahmed Adly
Hello, Is there a way that google ads API send webhook requests means to notify subscribed application via rest or grpc call when an event occurs? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=

Re: ShoppingProductAdInfo is empty

2020-08-19 Thread Ahmed Adly
Hello, Any reply to this? We need to fix this urgently. On Tuesday, August 18, 2020 at 3:33:44 PM UTC-5 Ahmed Adly wrote: > Hello, > I have this query: > > String query = "SELECT ad_group.id, " > + "ad_group_ad.ad.id, " > + "ad_g

ShoppingProductAdInfo is empty

2020-08-18 Thread Ahmed Adly
Hello, I have this query: String query = "SELECT ad_group.id, " + "ad_group_ad.ad.id, " + "ad_group_ad.ad.name," + " ad_group_ad.ad.type, " + "ad_group_ad.ad.shopping_product_ad " + " FROM ad_group_ad " + "Where ad_group_ad.ad.type = \"SHOPPING_PRODUCT_AD\" "; it runs successfully and i can extr