Re: Problem with refresh token in Python

2013-12-30 Thread Danial Klimkin
Hello,


Please make sure you are not logged in when opening the auth URL. When 
prompted, log in as your production AdWords account user.


-Danial, AdWords API Team.

On Wednesday, December 25, 2013 9:08:58 AM UTC+4, dev...@simpleunion.com 
wrote:
>
> Hi there!
>
> I'm using adwords_examples_python_15.11.1. I can run the example code 
> correctly with a test account before.
> But now, i use a production account, i setup it with the config.py code, 
> and run the generate_refresh_token.py to get new token for the api.
> With my Client Id and Client Secret, i received a link to get the 
> verification code, when used it, i received a None refresh token, so i can 
> not continue to setup my account with config.py.
> Here is my command screen:
>
> -
>   After approving the token enter the verification code (if 
> specified).
>   Code: 
> 4/2Q4PX7rsGTM6qeXrnYdc-Gy6iXpc.MmF9LajRI3MeXE-sT2ZLcbQ1yxJQhgI
>   OAuth 2.0 authorization successful!
>
>   Your refresh token is: None
>
> -
> I don't know that i did wrong somewhere. Anyone has encountered this 
> situation yet? I need some help
>
> Many thanks!
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


keyword match types not passing to {keyword} token?

2013-12-30 Thread admin
Hey folks!

Hope everyone had a good holiday.

This is an adwords developer question (
although technically not an API question)...

It seems that the keyword token 
{keyword} in the destination URL
of an ad isn't passing the brackets
and quotes to designate exact match
and phrase match types.

When we parse the destination URL,
the keyword we get back 
appears to not include " or [
although we still see the + for the
broad match modifier type.

But generally, our keyword data
doesnt match the google keyword
data because of this.

Does anyone know about this?

thanks, Claude


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Adwords JWT invalid grant

2013-12-30 Thread Blake Howe
Hi guys, This has driven me nuts. I am using the ruby API connecting  with 
JWT, and getting an invalid_grant error.  Here is my connection string.

  adwords = AdwordsApi::Api.new({
  :service => {
:environment => :PRODUCTION
  },
  :authentication => {
:method => 'OAUTH2_JWT',
:oauth2_issuer => 'x', < client ID for the r12
:oauth2_prn => '', <- email address
:oauth2_access_type => 'offline',
:oauth2_secret => 'notasecret',
:oauth2_keyfile => key_file, < correct path for key file
:developer_token=> 'xxx', 
:client_customer_id => 'x'   <  is correct.
  }
}) 

Using a similar scheme for the analytics api without issues. Let me know 
any thoughts, or something I could be missing.

Thanks!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


refresh token ruby library

2013-12-30 Thread Blake Howe

Hi guys, Im sorry for yet another question. Ive spent  hours trying to get 
this work and just seem to be going in circles.

First of all I can get the sample app working fine, but what I am doing 
requires offline access. Ive tried a couple of things 

1. just running the sample app getting the refresh token and plugging it 
in, but I get invalid token. Here is the sample code:


token_hash = {
   :access_token => ACCESS_TOKEN_FROM_SAMPLE_APP,
   :refresh_token => REFRESH_TOKEN_FROM_SAMPLE_APP,
   :expires_in => 3600,
   :expires_at => 1388190331,
   :params => { "token_type"=>"Bearer"},
   :options => { :mode => :header, :header_format => "Bearer %s", 
:param_name=>"bearer_token" }
 }
 
 binding.pry
 # Setup new adwords class and service
 adwords = AdwordsApi::Api.new;
 adwords.logger = Logger.new('adwords_xml.log')
 adwords.credential_handler.set_credential(:oauth2_token, token_hash)
 adwords.credential_handler.set_credential(:client_customer_id, 
CUSTOMER_ID_OF_ACCOUNT)
 campaign_srv = adwords.service(:CampaignService,:v201309)
 response = campaign_srv.get({:fields => ['Id', 'Name', 'Status']})
 p response[:total_num_entries]

When I run it I get invalid token. Attached is the debugging output 
in adwords_xml_for_refresh_token.log

Thanks in advance,
Blake


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


adwords_xml_for_refresh_token.log
Description: Binary data


error when calling v201306.AddCampaigns

2013-12-30 Thread kano patel
This code example adds campaigns. To get campaigns, run GetCampaigns.cs.
An exception occurred while running this code example. 
System.Reflection.TargetI
nvocationException (Exception has been thrown by the target of an 
invocation.)

   at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] 
argum
ents, SignatureStruct& sig, MethodAttributes methodAttributes, 
RuntimeTypeHandle
 typeOwner)
   at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] 
argume
nts, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle 
typeOwn
er)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags 
invoke
Attr, Binder binder, Object[] parameters, CultureInfo culture, Boolean 
skipVisib
ilityChecks)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags 
invoke
Attr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at Google.Api.Ads.AdWords.Examples.CSharp.Program.InvokeRun(Object 
codeExampl
e, AdWordsUser user) in 
c:\Users\admin\Downloads\awapi_dotnet_lib_v16.4.0\exampl
es\CSharp\Program.cs:line 140
   at 
Google.Api.Ads.AdWords.Examples.CSharp.Program.RunACodeExample(AdWordsUser
 user, Object codeExample) in 
c:\Users\admin\Downloads\awapi_dotnet_lib_v16.4.0\
examples\CSharp\Program.cs:line 99

Caused by

System.ApplicationException (Failed to add shared budget.)

   at 
Google.Api.Ads.AdWords.Examples.CSharp.v201306.AddCampaigns.Run(AdWordsUse
r user) in 
c:\Users\admin\Downloads\awapi_dotnet_lib_v16.4.0\examples\CSharp\v20
1306\BasicOperations\AddCampaigns.cs:line 89

Caused by

Google.Api.Ads.AdWords.Lib.AdWordsApiException (An API exception has 
occurred. S
ee ApiException and InnerException fields for more details.)

   at Google.Api.Ads.Common.Lib.AdsSoapClient.MakeApiCall(String 
methodName, Obj
ect[] parameters) in c:\src\MyProjects\now\Common library 
base\adwords\compile\L
ib\AdsSoapClient.cs:line 218
   at Google.Api.Ads.Common.Lib.AdsSoapClient.Invoke(String methodName, 
Object[]
 parameters) in c:\src\MyProjects\now\Common library 
base\adwords\compile\Lib\Ad
sSoapClient.cs:line 127
   at Google.Api.Ads.AdWords.v201306.BudgetService.mutate(BudgetOperation[] 
oper
ations) in c:\src\MyProjects\now\Common library 
base\adwords\compile\v201306\AdW
ordsApi.cs:line 2133
   at 
Google.Api.Ads.AdWords.Examples.CSharp.v201306.AddCampaigns.Run(AdWordsUse
r user) in 
c:\Users\admin\Downloads\awapi_dotnet_lib_v16.4.0\examples\CSharp\v20
1306\BasicOperations\AddCampaigns.cs:line 86

Caused by

System.Web.Services.Protocols.SoapException 
([QuotaCheckError.ACCOUNT_INACTIVE @
 ; trigger:''])

   at 
System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClie
ntMessage message, WebResponse response, Stream responseStream, Boolean 
asyncCal
l)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String 
methodN
ame, Object[] parameters)
   at Google.Api.Ads.Common.Lib.AdsSoapClient.MakeApiCall(String 
methodName, Obj
ect[] parameters) in c:\src\MyProjects\now\Common library 
base\adwords\compile\L
ib\AdsSoapClient.cs:line 212

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Get Percent Served

2013-12-30 Thread Danial Klimkin
Hello Sergey,


This UI value it not directly available in the API. You can calculate it on 
your side though by using AdGroup and ads impression numbers.


-Danial, AdWords API Team.

On Thursday, December 26, 2013 12:05:13 PM UTC+4, Sergey Levitskiy wrote:
>
> Hello!
> I didn't find any information about this in documentation.
> How can I get Percent Served ("Percent Served" shows how often one ad was 
> shown instead others in the ad group) using v201309?
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Validation failed for [refresh_token] with value []: Either the refresh_token or the access_token is required.

2013-12-30 Thread Danial Klimkin
Hello,


You need to configure auth.ini to include configuration details. Please see 
this article for more details:

  https://github.com/googleads/googleads-php-lib/wiki/Using-OAuth-2.0


-Danial, AdWords API Team.


On Thursday, December 26, 2013 9:01:12 PM UTC+4, sa...@keaadvertising.com 
wrote:
>
> Hello, I've received this error message when trying to retrieve a keyword 
> report. I've also tried running the getrefreshtoken.php file, but it 
> returns an empty file. Help please! I can't seem to find a solution to his 
> issue, how do I retrieve a refresh token?
>
> Validation failed for [refresh_token] with value []: Either the 
> refresh_token or the access_token is required.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to add custom field into an Adword Entity (ad)?

2013-12-30 Thread Danial Klimkin
Hi Joan,


No, custom fields are not supported in the AdWords API. Please use ad ID to 
join with a local database instead.


-Danial, AdWords API Team.


On Thursday, December 26, 2013 11:09:39 PM UTC+4, Joan Roig wrote:
>
> Is there any way to add a custom field into an Ad entity?
>
> Say I want to be able to add an 'external_id' to an Ad entity. Is that 
> possible at all? I haven't been able to find that in the API docs.
>
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to add Keywords to AdGroup when creating one?

2013-12-30 Thread Danial Klimkin
Hello Joan,


You need to make a separate call to 
AdGroupCriterionService.
 
Please check out our client libraries, all of them have a large set of 
examples:

  https://developers.google.com/adwords/api/docs/clientlibraries


-Danial, AdWords API Team.


On Saturday, December 28, 2013 3:11:44 AM UTC+4, Joan Roig wrote:
>
>
> When an Adgroup is created, is it possible to add keywords in the same 
> call? Or this needs to be done afterwards?
>
> If so, which fields should I fill when creating the Adgroup?
>
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: refresh token ruby library

2013-12-30 Thread Danial Klimkin
Hi Blake,


Please try config like this:

token_hash = {
   :access_token => ACCESS_TOKEN_FROM_SAMPLE_APP,
   :refresh_token => REFRESH_TOKEN_FROM_SAMPLE_APP,
   :issued_at => 1388190331,
   :expires_in => 3600
 }


-Danial, AdWords API Team.

On Saturday, December 28, 2013 4:44:04 AM UTC+4, Blake Howe wrote:
>
>
> Hi guys, Im sorry for yet another question. Ive spent  hours trying to get 
> this work and just seem to be going in circles.
>
> First of all I can get the sample app working fine, but what I am doing 
> requires offline access. Ive tried a couple of things 
>
> 1. just running the sample app getting the refresh token and plugging it 
> in, but I get invalid token. Here is the sample code:
>
>
> token_hash = {
>:access_token => ACCESS_TOKEN_FROM_SAMPLE_APP,
>:refresh_token => REFRESH_TOKEN_FROM_SAMPLE_APP,
>:expires_in => 3600,
>:expires_at => 1388190331,
>:params => { "token_type"=>"Bearer"},
>:options => { :mode => :header, :header_format => "Bearer %s", 
> :param_name=>"bearer_token" }
>  }
>  
>  binding.pry
>  # Setup new adwords class and service
>  adwords = AdwordsApi::Api.new;
>  adwords.logger = Logger.new('adwords_xml.log')
>  adwords.credential_handler.set_credential(:oauth2_token, token_hash)
>  adwords.credential_handler.set_credential(:client_customer_id, 
> CUSTOMER_ID_OF_ACCOUNT)
>  campaign_srv = adwords.service(:CampaignService,:v201309)
>  response = campaign_srv.get({:fields => ['Id', 'Name', 'Status']})
>  p response[:total_num_entries]
>
> When I run it I get invalid token. Attached is the debugging output 
> in adwords_xml_for_refresh_token.log
>
> Thanks in advance,
> Blake
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Problem with fetching data for a particular date (Cron job PHP v201309)

2013-12-30 Thread MWA
I am using this to Get campaign stats like "Clicks, Conversions, 
Impressions" etc

$campaignService = $user->GetService('CampaignService', ADWORDS_VERSION);

On Thursday, December 26, 2013 1:26:52 PM UTC+5, Danial Klimkin wrote:
>
> Hello MWA,
>
>
> What is the report type you are running?
>
>
> -Danial, AdWords API Team.
>
> On Tuesday, December 24, 2013 9:42:51 PM UTC+4, MWA wrote:
>>
>> Hi There,
>>
>> I have been using v201306 recently, but now when i am going to migrate to 
>> version v201309, one of the cron jobs that makes use of conversions data 
>> (for a particular date) is returning error:
>>
>> if i change my version to v201309
>>
>>   define('ADWORDS_VERSION', 'v201309'); 
>>
>> it gives the following error in selector fields
>>
>>
>> *SoapFault Object
>> (
>> [message:protected] => [SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'Clicks', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'Impressions', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'Cost', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'AveragePosition', SelectorError.INVALID_FIELD_NAME 
>> @ serviceSelector; trigger:'AverageCpc', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'AverageCpm', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'Ctr', SelectorError.INVALID_FIELD_NAME @ 
>> serviceSelector; trigger:'Conversions']
>>   
>> ==
>>  *
>>
>> *  Following are my selector feilds:*
>>
>>   $selector->fields = array('Id','KeywordText', 
>> 'KeywordMatchType','PlacementUrl','Status','SystemServingStatus','ApprovalStatus','DestinationUrl','FirstPageCpc','IsKeywordAdRelevanceAcceptable','IsLandingPageLatencyAcceptable','IsLandingPageQualityAcceptable','QualityScore','CpcBidSource','CpmBidSource','Clicks','Impressions','Cost','AveragePosition','AverageCpc','AverageCpm','Ctr','Conversions','EnhancedCpcEnabled','CpcBid','CpmBid');
>>
>>
>> With v201306 it runs fine, What should I do now?
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Downloading reporting data for an specific date PHP v201309

2013-12-30 Thread MWA
Hi There

Any one has idea about getting Converions,Impressions,Clicks etc data for a 
given date using PHP API v201309?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Downloading reporting data for an specific date PHP v201309

2013-12-30 Thread MWA
For example if I am using CampaignService:

 $campaignService = $user->GetService('CampaignService', ADWORDS_VERSION);


On Monday, December 30, 2013 5:14:49 PM UTC+5, MWA wrote:
>
> Hi There
>
> Any one has idea about getting Converions,Impressions,Clicks etc data for 
> a given date using PHP API v201309?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: keyword match types not passing to {keyword} token?

2013-12-30 Thread GregT
Hi, Claude.

You have to use a separate ValueTrack parameter in your URL to figure out 
the match type -- {matchtype}.  See 
https://support.google.com/adwords/answer/2375447?hl=en.

Greg

On Friday, December 27, 2013 10:05:29 AM UTC-6, 
ad...@infiniteprofitsolutions.com wrote:
>
> Hey folks!
>
> Hope everyone had a good holiday.
>
> This is an adwords developer question (
> although technically not an API question)...
>
> It seems that the keyword token 
> {keyword} in the destination URL
> of an ad isn't passing the brackets
> and quotes to designate exact match
> and phrase match types.
>
> When we parse the destination URL,
> the keyword we get back 
> appears to not include " or [
> although we still see the + for the
> broad match modifier type.
>
> But generally, our keyword data
> doesnt match the google keyword
> data because of this.
>
> Does anyone know about this?
>
> thanks, Claude
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.