Add offline conversion clicks to Campaigns..!!

2014-10-22 Thread VP
Hi,

I want to add offline conversion Clicks to adwords campaignid(Campaign) 
without using gClId.

I had go with this example :: 

https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201402/AdvancedOperations/UploadOfflineConversions.php

But I dont want to add conversion using gClId. It is possible to add 
offline conversion without gClid to Campaigns?? or gClId must require for 
that.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/411ed2b2-c5f9-4ff9-81a1-0496b92cda89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get Keywords Clicks and Cost data

2014-10-17 Thread VP

Hello All,

I have used targeting Idea service to get the Keywords stats like 
CPC,Impressions and Competetion data But, I want to get keywords stats like 
Clicks and Cost data. than how can it possible to get this stats using api. 
I dont want to download keyword performance report of the adwords account.
My api version is 201406 and Platform : PHP.


Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/180b5bd4-cada-4524-a9a3-617cd9090527%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get CPM of Url.

2014-08-30 Thread VP
Hi,

Please let me know how to estimate or get the CPM of any video like youtube 
video ID (i.e. "VJw8r_YWJ9k") or a URL to a Youtube Video 
(https://www.youtube.com/watch?v=VJw8r_YWJ9k) using the Adwords API.


Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9b3f1aea-a689-459f-a465-864df7edf610%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: MISSING_PREDICATE_OPERATOR @ serviceSelector

2011-09-19 Thread VP
Ok found the fix. need to add
campaignPredicate.operatorSpecified = true;

On Sep 19, 11:30 am, VP  wrote:
> Hi,
> I am trying to filter the result of AdGroup by campaignId. The code worked
> when no filter is added but when I add predicate I got a
> Missing_predicate_operator error in run time.
> I stepped through the code and I can see clearly the prediate field is
> EQUALS.
>
> Here is the exception:
> ex = {"[SelectorError.MISSING_PREDICATE_OPERATOR @ serviceSelector,
> RequiredError.REQUIRED @ serviceSelector.predicates[0].operator]"}
>
> Here is my code, please help!
>
>                    // Create a selector.
>                     GoogleAdGroup.Selector selector = new
> GoogleAdGroup.Selector();
>                     selector.fields = new string[] { "Id", "CampaignId",
> "Name" };
>
>                     // Set a filter condition.
>                     GoogleAdGroup.Predicate campaignPredicate = new
> GoogleAdGroup.Predicate();
>                     campaignPredicate.field = "CampaignId";
>                     campaignPredicate.@operator =
> GoogleAdGroup.PredicateOperator.EQUALS;
>                     campaignPredicate.values = new string[] {
> pcampaign.Id.ToString() };
>                     selector.predicates = new GoogleAdGroup.Predicate[] {
> campaignPredicate };
>
>                     AdGroupPage adgrups = null;
>                     adgrups = adgroupService.get(selector);

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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


MISSING_PREDICATE_OPERATOR @ serviceSelector

2011-09-19 Thread VP
Hi,
I am trying to filter the result of AdGroup by campaignId. The code worked 
when no filter is added but when I add predicate I got a 
Missing_predicate_operator error in run time. 
I stepped through the code and I can see clearly the prediate field is 
EQUALS. 

Here is the exception:
ex = {"[SelectorError.MISSING_PREDICATE_OPERATOR @ serviceSelector, 
RequiredError.REQUIRED @ serviceSelector.predicates[0].operator]"}

Here is my code, please help!
 
   // Create a selector.
GoogleAdGroup.Selector selector = new 
GoogleAdGroup.Selector();
selector.fields = new string[] { "Id", "CampaignId", 
"Name" };

// Set a filter condition.
GoogleAdGroup.Predicate campaignPredicate = new 
GoogleAdGroup.Predicate();
campaignPredicate.field = "CampaignId";
campaignPredicate.@operator = 
GoogleAdGroup.PredicateOperator.EQUALS;
campaignPredicate.values = new string[] { 
pcampaign.Id.ToString() };
selector.predicates = new GoogleAdGroup.Predicate[] { 
campaignPredicate };

AdGroupPage adgrups = null;
adgrups = adgroupService.get(selector);

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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