Re: How to download report from request url in v201109

2012-02-20 Thread Sanju
Hi Sanjay Vel,

Using ReportUtils.downloadReport method u can download any report.
Pass reportDefination object as parameter to above method where you set 
values you needed.
Eg:

Exactly I dont know ruby code but logically I can explain you.

1) Create ReportDefinition object
set all the fields to above object like below
2) set dateRangeType 
3) set ReportType
4) set Download format (For your need CSV)
5) set selector (where you should create selector object prior to 
reportDefination object creation and set fields what you need like for 
keyword performance report setting keywordText,KeywordMatchType,Clicks 
etc..)
6)Finally pass this reportDefination object one among to downloadReport 
method on ReportUtils class.

And output appears in ReportDownloadResponse.

Hope I gave an idea to you.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Freischaltung AdWords API Entwickler-Token

2012-02-20 Thread Dietrich Wedegärtner
Hallo,

wir haben am 30.1.2012 den AdWords API Entwickler-Token für MCC
347-878-1078 beantragt. Können Sie uns sagen, wann dieser
freigeschaltet wird?

Grund der Nachfrage: Wir haben mit Hilfe eines externen Entwicklers
mehrere Scripte zur Verwaltung unserer knapp 200 Konten entwickelt und
würde diese gerne schnellstmöglich einsetzen, um unseren Kunden eine
noch besser Kampangenleistung bieten zu können.

Vielen Dank für Ihre Unterstützung.


Dietrich Wedegärtner

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: v201109 Ad Performance Report

2012-02-20 Thread Sanju
Hi Dmitriy,

yes, using v201109 report downloads you can get impressions by content 
network. Setting AdNetworkType1 to CONTENT in predicate object you can get 
it

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


human relationship

2012-02-20 Thread ANBU
http://entrymade.info/

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Adwords sandbox API via OAuth and PHP Library

2012-02-20 Thread Alex Pojarsky
Greetings, everyone.

I have few nooby questions about the adwords sandbox API. Yes, I've
searched the google and tried to check the docs as well as tried to
run code examples provided along with PHP library.

My setup is the following:
1. PHP Library provided by google: 
http://code.google.com/p/google-api-adwords-php/
2. OAuth as authentication method
3. Sandbox environment

My questions are the following:
1. Am I right using OAuth with regular settings in order to acquire
token to access my adwords sandbox environment? Or is there some kind
of sandbox token retrieval, which differs from the live setup?
2. Is it _required_ (i.e. OAuth won't work otherwise) that I register
domain in Google and create self-signed certificate and sign every
request made with OAuth and token? Is this required for development/
sandbox? Is it required for Live setup?
3. Am I right doing the OAuth-enabled request with the code below:

$oauthInfo = array(
'oauth_consumer_key' = $config-oauth_consumer_key,
'oauth_consumer_secret' = $config-oauth_consumer_secret,
'oauth_token' = $config-oauth_token,
'oauth_token_secret' = $config-oauth_token_secret
);

// Create the AdWordsUser and set the OAuth info.
$user = new AdWordsUser();
$user-SetOAuthInfo($oauthInfo);
$user-LogAll();

// Do the rest of the job
$campaignService = $user-GetService('CampaignService', 'v201109',
$this-_server);
...

4. consumer_key and consumer_secret are acquired by registering domain
with Google service. Can I work without these? In sandbox? On live
setup? How?

The problem is when I try to connect to the sandbox ADwords API I keep
getting token invalid error even though there were no errors on all
the OAuth token retrieval steps (i.e. both request and upgrade went
ok). This error message, as far as I understand, can be caused by many
reasons like I can't use live OAuth token in sandbox environment, or I
do not sign my OAuth requests or my token was requested/upgraded
incorrectly etc. That's why I'm asking questions above hoping to find
the reason it does not work for me.

This is it, for now. I thank you very much in advance for the answers.

Best regards,
Alex.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Why does Selector.DateRange include campaigns/adgroups etc from outside of the given range?

2012-02-20 Thread Akil Burgess
I think I've found the answer on my own:

http://adwordsapi.blogspot.com/2011/03/discover-v201101-generic-selectors.html

*DateRangehttp://code.google.com/apis/adwords/docs/reference/latest/CampaignService.Selector.html#dateRange
:* You can provide an optional 
DateRangehttp://code.google.com/apis/adwords/docs/reference/latest/CampaignService.DateRange.html
 to 
control the date range for which the data is retrieved. Specifying a date 
range only affects the stats returned by the server (if applicable), not 
the actual entities being returned by the server. The date format for 
minhttp://code.google.com/apis/adwords/docs/reference/latest/CampaignService.DateRange.html#min
 and 
maxhttp://code.google.com/apis/adwords/docs/reference/latest/CampaignService.DateRange.html#max
 fields 
have the format mmdd. The date range should be in the range [19700101, 
20380101]. 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: adwords report downloads through OAuth

2012-02-20 Thread Danial Klimkin
Hi Vipin,


The examples were re-organized since this blog post went live. You can find 
it here:

  
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201109/Misc/UseOAuth.php


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Getting client/MCC ID for given credentials

2012-02-20 Thread Danial Klimkin
Hi Dorian,


It is a known issue, there is no way to find the ID via the API for 
unlinked account at the moment.

We are working to fix it. For now, the only work around is to ask the user 
for the ID.


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Getting reports with v201109 only after collecting the report once manually for that account from UI

2012-02-20 Thread Danial Klimkin
Hello Nidhin,


This should not be the case. Please check if you can reproduce the issue 
again.

If you see it again, please send me the account IDs and request XML code 
via email.


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Developer token NOT GETTING APPROVE

2012-02-20 Thread Danial Klimkin
Hello Mak,


Token reviews are handled by a separate team which could be reached 
via adwordsapi-tok...@google.com. Please let them know your customer ID and 
describe your issue.


-Danial, AdWords API Team.


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: UNEXPECTED_INTERNAL_API_ERROR

2012-02-20 Thread Danial Klimkin
Hi Gordo,


You are missing the clientCustomerId field in the header. It is required 
for most of the requests.

Please see the PHP library README on how to specify it:

  http://code.google.com/p/google-api-adwords-php/source/browse/trunk/README


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: v201109 API Server

2012-02-20 Thread Danial Klimkin
Hello Christopher,


No, we don't have a separate endpoint for it. If you use the latest version 
of one of our client libraries, you definitely use v201109 only.

Otherwise, you may want to grep through your request to make sure the 
version is correct.


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: UNEXPECTED_INTERNAL_API_ERROR

2012-02-20 Thread Gordo L
If only it were that easy...
Unfortunately I've already done that. I thought maybe it was a problem
with my auth.ini file so I hardcoded the credentials into the class
loader and still get the same response.

I also tried with and without the hyphens in the customerID, same
response both ways.

--


[Feb 20 2012 13:18:07.00 - ERROR] POST /api/adwords/cm/v201109/
CampaignService HTTP/1.1
Host: adwords-sandbox.google.com
Connection: Keep-Alive
User-Agent: PHP-SOAP/5.3.8, gzip
Accept-Encoding: gzip, deflate
Content-Encoding: gzip
Content-Type: text/xml; charset=utf-8
SOAPAction: 
Content-Length: 929

?xml version=1.0 encoding=UTF-8?
SOAP-ENV:Envelope xmlns:SOAP-ENV=http://schemas.xmlsoap.org/soap/
envelope/ xmlns:ns1=https://adwords.google.com/api/adwords/cm/
v201109 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  SOAP-ENV:Header
ns1:RequestHeader xmlns:ns1=https://adwords.google.com/api/
adwords/cm/v201109 xsi:type=ns1:RequestHeader
  ns1:authToken*/ns1:authToken
  ns1:clientCustomerId152-748-5261/ns1:clientCustomerId
  ns1:developerTokenad...@instantcheckmate.com++usd/
ns1:developerToken
  ns1:userAgentAwApi-PHP-2.6.3-Instant-Checkmate/ns1:userAgent
/ns1:RequestHeader
  /SOAP-ENV:Header
  SOAP-ENV:Body
ns1:mutate
  ns1:operations
ns1:operatorADD/ns1:operator
ns1:operand
  ns1:nameALBERT_AMINO-STACEY_AVER-1329426331/ns1:name
  ns1:statusPAUSED/ns1:status
  ns1:budget
ns1:periodDAILY/ns1:period
ns1:amount
  ns1:microAmount1000/ns1:microAmount
/ns1:amount
ns1:deliveryMethodACCELERATED/ns1:deliveryMethod
  /ns1:budget
  ns1:biddingStrategy xmlns:ns1=https://adwords.google.com/
api/adwords/cm/v201109 xsi:type=ns1:ManualCPC/
  ns1:networkSetting
ns1:targetGoogleSearchtrue/ns1:targetGoogleSearch
ns1:targetSearchNetworktrue/ns1:targetSearchNetwork
ns1:targetContentNetworkfalse/ns1:targetContentNetwork
ns1:targetContentContextualfalse/
ns1:targetContentContextual
ns1:targetPartnerSearchNetworkfalse/
ns1:targetPartnerSearchNetwork
  /ns1:networkSetting
/ns1:operand
  /ns1:operations
/ns1:mutate
  /SOAP-ENV:Body
/SOAP-ENV:Envelope

HTTP/1.1 500 Internal Server Error
Content-Type: text/xml; charset=UTF-8
Content-Encoding: gzip
Date: Mon, 20 Feb 2012 18:18:07 GMT
Expires: Mon, 20 Feb 2012 18:18:07 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 540
Server: GSE

?xml version=1.0?
soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  soap:Header
ResponseHeader xmlns=https://adwords.google.com/api/adwords/cm/
v201109
  requestId0004b96950eff3900a0c98142879/requestId
  serviceNameCampaignService/serviceName
  methodNamemutate/methodName
  operations0/operations
  responseTime68/responseTime
  units0/units
/ResponseHeader
  /soap:Header
  soap:Body
soap:Fault
  faultcodesoap:Server/faultcode
  faultstring[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @
com.google.ads.api.services.common.error.InternalApiError.lt;initgt;
(InternalApiErro]/faultstring
  detail
ApiExceptionFault xmlns=https://adwords.google.com/api/
adwords/cm/v201109
  message[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @
com.google.ads.api.services.common.error.InternalApiError.lt;initgt;
(InternalApiErro]/message
  ApplicationException.TypeApiException/
ApplicationException.Type
  errors xmlns:xsi=http://www.w3.org/2001/XMLSchema-
instance xsi:type=InternalApiError
fieldPath/
trigger/
 
errorStringInternalApiError.UNEXPECTED_INTERNAL_API_ERROR/
errorString
ApiError.TypeInternalApiError/ApiError.Type
reasonUNEXPECTED_INTERNAL_API_ERROR/reason
  /errors
/ApiExceptionFault
  /detail
/soap:Fault
  /soap:Body
/soap:Envelope

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Developer token pending approval over 2 weeks...

2012-02-20 Thread Christophe
Can someone help me get a developer token soon. It's been over 3
weeks and no progress. Thanks

On Feb 13, 11:39 pm, Christophe promo...@gmail.com wrote:
 Hello,

 We use to have adevelopertokenand we had to re-apply. It has now
 been over 2 weeks and it is still in Pending approval status.

 When can we expect our request to be processed?

 Thank you,
 Christophe

 PS: We actually have 3 developers working on our application that will
 interact with our Adwords accounts.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


What is default timezone for DateRange of ReportDefinitionService?

2012-02-20 Thread Tim Chaney
Hi,

Is the default timezone for a specified DateRange in the 
ReportDefinitionService the timezone of the client? If so, is there to 
override this?

Thanks,
Tim

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


placements report in v201109

2012-02-20 Thread Sri
Hi,
  What are the equivalent fields in v201109 for the following fields in v13 

PlacementSpecialCategory
AdVariation
DeliveryType(dvType)

Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Legality of Adwords API Usage

2012-02-20 Thread Dan Norris
This is pretty much my exact question (although I note it wasn't answered 
here). I want to build a keyword tool that as part of it's feature set 
enables the user to search for keywords using an interface similar to the 
Google keyword tool. I also don't want to pay for it. Is this possible?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Campaigns with similar names get same ID when created concurrently.

2012-02-20 Thread Maxim
Often times, but not every time, when two threads create campaigns with 
similar names for the same account, e.g.
40AC459A-E44F-4ED4-AB8C-ECFD653E216F-GES and 
40AC459A-E44F-4ED4-AB8C-ECFD653E216F-GEL
or
40AC459A-E44F-4ED4-AB8C-ECFD653E216F-IPS and 
40AC459A-E44F-4ED4-AB8C-ECFD653E216F-IPL

Google API assigns the same ID to these campaigns.
We are not always able to detect this condition timely, which results in 
all sorts of problems for our system, including duplicate stats.
The remedy is to erase IDs for one of the campaigns and its contents, which 
marks them as new in our system - new elements get submitted to Google 
again using create APIs (or the new ADD APIs), in which case we get correct 
IDs.
We are unable to reproduce it every time, but with 550K+ campaigns it 
becomes a nuisance.

Any idea?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: adwords report downloads through OAuth

2012-02-20 Thread Vtrio Develop
Hello Danial,

Thank you very much for your reply.

Can I do it with sandbox account?  

I have created oauth_consumer_key and  oauth_consumer_secret using my 
domain. And I added the values here

 $oauthInfo = array('oauth_consumer_key' = 'anonymous','oauth_consumer_secret' 
= 'anonymous');
After change it and took the UseOAuth.php, I am getting internal server error.

For that I have commented this line,

if (__FILE__ != realpath($_SERVER['PHP_SELF'])) {
return;
}

without commenting above line, I am not getting any output.

Can you please let me know, what are the changes need to make in files to work 
Oauth?

Also I am not getting much help about it.
Thanks again.
Vipin



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Adwords sandbox API via OAuth and PHP Library

2012-02-20 Thread Vtrio Develop
Hello all,

These are the issues I am facing and exactly these are the questions I want 
to ask. 

Please any one reply.

Can we use Oauth with sandbox account? (Important question)

Thanks,
Vipin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Oauth token expires often

2012-02-20 Thread Vtrio Develop
Hello Craig,

Can you please tell me, is Oauth work with sandbox account?

and if you can please provide the changes you made in the code it to work.

I am facing many issue with it. 

Please help.

Thanks,
Vipin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Oauth token expires often

2012-02-20 Thread Vtrio Develop
Hello Chirag,

Can you please tell me, is Oauth work with sandbox account?

and if you can please provide the changes you made in the code it to work.

I am facing many issue with it. 

Please help.

Thanks,
Vipin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Not able to get delivery method using CampaignService

2012-02-20 Thread Chirag
Hello Team,
I amusing campaign service to get all campaign settings.
but i found that none of campaign has delivery method setting value.
Its always blank.
How i can get this setting using API?
i am getting result under CampaignPage Object :

[totalBudget] = Budget Object
(
[period] = DAILY
[amount] = Money Object
(
[microAmount] = 0
[ComparableValueType] = Money
[_parameterMap:ComparableValue:private] = Array
(
[ComparableValue.Type] =
ComparableValueType
)

)

[deliveryMethod] =
)

Thnaks,
Chirag

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Data Discrepancy

2012-02-20 Thread Bryan K.
Group -

For a while we have been pulling reports from the AdWords API.  But
recently, we noticed a discrepancy in the data that is displayed
online and what is actually returned from the API.  In question is two
accounts that is showing cost data that is not matching with the
online data.

What would it be about these two accounts that is not allowing us to
pull accurate data through the API.  I understand corrections for
click fraud, but this is only happening on a couple of accounts going
back more than a month.

Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Oauth token expires often

2012-02-20 Thread Chirag
Hi Vipin,

Yes,  Oauth is work with sandbox account.
For Oauth you need to maintain user(Adwords User) session between
multiple request.
You can refer webapp 
http://code.google.com/p/google-api-adwords-php/downloads/list?can=2q=Apps%3DSampleWebapp

Thanks,

On Feb 21, 10:46 am, Vtrio Develop vtrio...@gmail.com wrote:
 Hello Chirag,

 Can you please tell me, is Oauth work with sandbox account?

 and if you can please provide the changes you made in the code it to work.

 I am facing many issue with it.

 Please help.

 Thanks,
 Vipin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Oauth token expires often

2012-02-20 Thread Vtrio Develop
Hello Chirag,

Thank you very much. Yes it is Authenticated via Oauth. 
In auth.ini, we need to add only developerToken right. It is same as our 
myem...@gmail.com++USD right?

But If I try using my email and password method, I am getting all the 
campaigns. But Oauth method, it is authenticated but not return any 
campaigns.  Do you know the reason?

Also I have edited this line with correct data

 $oauthInfo = array('oauth_consumer_key' = 'my consumer key',
'oauth_consumer_secret' = 'my consumer secret');

But still I am not getting any result. 

Can you give me an idea about how to get oauth_consumer_key and 
oauth_consumer_secret. I am not sure I generated it in correct way. 

Please help and thank you in advance.

Thanks,
Vipin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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