Re: AuthenticationError.NOT_ADS_USER

2017-09-08 Thread Carlos Casasola
Hello Bharani.

I configured all credentials again but doesn´t work. 

I use this request 
headers https://developers.google.com/adwords/api/docs/guides/call-structure
I send this param* clientCustomerId *but return the same error.

Thank you.


On Thursday, September 7, 2017 at 3:56:20 PM UTC-5, Bharani Cherukuri 
(AdWords API Team) wrote:
>
> Hello Carlos, 
>
> It is not possible to generate the report at MCC level. This said, for 
> this error, can you try generating the report again with the client 
> customer id of the client account associated with your MCC? If that doesn't 
> work, could you regenerate the OAuth2 credentials and then try again? 
>
> Let me know if that works for you.
>
> Thanks,
> Bharani, AdWords API Team.
>
> On Thursday, September 7, 2017 at 5:04:56 AM UTC-4, Carlos Casasola wrote:
>>
>> Hi,
>>
>> I configured my MCC and linked a AdWords account,
>> I get my developer Token, the client ID, client Secret and refresh Token 
>> with the MCC.
>>
>> When I call to API using the PHP library googleads-php-lib": "19.0.0" 
>> return the next error: 
>>
>>  Type = 'AuthenticationError.NOT_ADS_USER', Trigger = '', FieldPath 
>> = ''. 
>>
>> I try use the MCC client ID and the google adwords ID in the request but 
>> not working.
>> Why google errors says: "The login used to generate the access token is 
>> not associated with any AdWords account."? if there is an associated 
>> adwords account
>> .
>> Could anyone help me, please?
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d4b2b12c-d463-427c-8f52-0fef50931685%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Cannot pause/resume Smart Display Ads via API v201708

2017-09-08 Thread Greg Sconce
I am getting the follwing 
error [OperationAccessDenied.MUTATE_ACTION_NOT_PERMITTED_FOR_CLIENT @ 
operations[0]] when I try to pause or resume a smart display ad.

I know that these mutate actions are not available when working with 
express ads, but I have not seen anything in documentation that states that 
they are not avaiable for "smart display ads"

I am using the following code with v29.0.0 of thegoogleads/googleads-php-lib

$campaignService = $this->adWordsServices->get($this->session, 
CampaignService::class);

// Create a campaign with PAUSED status.
$campaign = new Campaign();
$campaign->setId($campaign_id);
$campaign->setStatus(CampaignStatus::PAUSED);

// Create a campaign operation and add it to the list.
$operation = new CampaignOperation();
$operation->setOperand($campaign);
$operation->setOperator(Operator::SET);
$operations[] = $operation;

// Update the campaign on the server.
try{
  $result = $campaignService->mutate($operations);
} catch(Exception $e){
  throw new Exception($e->getMessage());
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/64d3cf88-20f5-4429-9707-78c50682397c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


About using MaximizeConversionsBiddingScheme

2017-09-08 Thread test71942
 

Hello,


When I create a campaign, when I select "MAXIMIZE_CONVERSIONS" in a bidding 
strategy 
I get an error.

Write source code and error message. 

please tell me.


[error message]

BiddingErrors.BIDDING_STRATEGY_TYPE_INCOMPATIBLE_WITH_SHARED_BUDGET @ 
operations[0].operand.budget


[api version]

googleads/googleads-php-lib/src/Google/AdsApi/AdWords/v201708


[source code]

use Google\AdsApi\AdWords\v201708\cm\BiddingStrategyType;

use Google\AdsApi\AdWords\v201708\cm\BiddingStrategyConfiguration;

use Google\AdsApi\AdWords\v201708\cm\MaximizeConversionsBiddingScheme;


$biddingStrategyConfiguration = new BiddingStrategyConfiguration();

$biddingStrategyConfiguration->setBiddingStrategyType(

BiddingStrategyType::MAXIMIZE_CONVERSIONS);

$biddingScheme = new MaximizeConversionsBiddingScheme();

$biddingStrategyConfiguration->setBiddingScheme($biddingScheme);

$campaign->setBiddingStrategyConfiguration($biddingStrategyConfiguration);


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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/17560009-d6d9-4099-90a6-d7aec522dd67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: help with Api

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, 

Could you share the screenshot/code snippet of how you are setting your 
selector? You can refer to this 

 sample 
in PHP to understand how to run reports using the API. Since you are using 
custom 
date range 
,
 
please make sure to set the min and max dates as well.

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fb7d3b12-6dc5-4226-b806-294cf0b04afc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Will AdWords API surpport AdGroup level adServingOptimizationStatus?

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Caihua 

This feature is not currently supported by the AdWords API. Please keep an 
eye on our blog 
 for 
updates on upcoming releases. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7c23f23f-4f76-497c-a88b-de8442b84672%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


help with Api

2017-09-08 Thread Дмитрий Бережной
Api version 201708, I create the following query

$report_definition = new ReportDefinition($selector);
$report_definition->setReportName(self::_get_report_name($customer_id));
$report_definition->setDateRangeType(ReportDefinitionDateRangeType::CUSTOM_DATE);
$report_definition->setReportType(ReportDefinitionReportType::ACCOUNT_PERFORMANCE_REPORT);
$report_definition->setDownloadFormat(DownloadFormat::XML);

$report_downloader = new ReportDownloader($adwords_session_user);
$report_settings_override = (new ReportSettingsBuilder())
->includeZeroImpressions(true)
->build();

$report_download_result = 
$report_downloader->downloadReport($report_definition, 
$report_settings_override);
$report_download_result->saveToFile('/');


And I get the followingGoogle\AdsApi\AdWords\v201708\cm\ApiException [ 0 ]: 
Details:
 [fieldPath: ; trigger: Invalid ReportDefinition Xml: cvc-type.3.1.2: 
Element 'fields' is a simple type, so it must have no element 
information item [children].; errorString: 
ReportDownloadError.INVALID_REPORT_DEFINITION_XML]

What am I doing wrong ?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6a82904a-0bd5-495f-8a65-68179401a80f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Googel Adwords API - Reporting - (ParallelReportDownload.php) need the data in an array format

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Pradeep, 

The API only supports these formats 

 
in which the report data can be downloaded. You will need to post process 
the result to convert the data into your desired format. As you found out, 
the PHP client library 

 
supports the methods *getStream()* (gets the report download response as a 
stream), *getAsString() *(gets the report download response as a string) 
and *saveToFile($filePath)* (writes the contents of the report download 
response to the specified file). You could look into the options of using 
any of these methods to handle the report output. What issue are you facing 
while using the getAsString()?

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fc56ce88-6653-40a9-be29-ca326d0713e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Will AdWords API surpport AdGroup level adServingOptimizationStatus?

2017-09-08 Thread Caihua Du
Hi AdWords team,

According to the recent statement (email) from AdWords, that "Ad rotation 
settings will be available at the ad group level". However I didn't find 
any current AdGroup API can return back this field. Can you please let us 
know if this will be available in newer SDK version?

https://developers.google.com/adwords/api/docs/reference/v201708/CampaignService.AdServingOptimizationStatus

Thanks,
Caihua. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8c6ce2ec-68e3-4b33-9a29-bbbfbc07d704%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how to setting Dynamic ad settings for Display campaign by adwords api

2017-09-08 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

Unfortunately, it is not possible to set dynamic ad settings for the 
Display network campaign from the AdWords API. You will have to create that 
using the AdWords UI. Please refer to this guide 
 to 
create display network campaigns from the AdWords UI.

Thanks,
Bharani, AdWords API Team.

On Friday, September 8, 2017 at 5:21:02 AM UTC-4, wyf...@gmail.com wrote:
>
>
> 
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f2d83e22-a7c4-4d93-945d-42210afc11d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to send offline sales data to google adwords?

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Rohit, 

Yes, you can upload offline conversions using the AdWords API. Have you 
gotten a chance to check the guide 
 on 
tracking and importing conversions? This 

 section 
of the guide explains how to upload offline click and call conversions 
using the API. You can also find the complete code samples here 
.
 
Let me know if you have any additional questions. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/91697561-a5bf-4d1c-a4c1-4376a5bdd2f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I am First time using Google AdWords

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Kranthi,

We address questions specific to AdWords API on this forum. Since your 
question is specific to promotional offers, please post your question on 
Advertisers 
community forum 
 
or 
get in touch with the AdWords Product team 
 directly.

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dbd2e584-f2c6-49f3-9832-75099f710a13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: v29.0.0 installation problem

2017-09-08 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

Based on the error logs, it looks like you're trying to install the 
google/auth 
 
version 
which is not supported by the client library. Can you make sure to install 
the PHP client library  by 
following the steps mentioned here 
? You can also refer to 
this issue on our Github page 
. If the issue 
persists, you may try posting your question here 
. 

Thanks,
Bharani, AdWords API Team.  

On Friday, September 8, 2017 at 5:21:02 AM UTC-4, Aliko wrote:
>
> Hello,
>
> When I try to install v29.0.0 
> 
>  like 
> before versions, I got below errors. Can you help me please?
>
> Best Regards
>
> root@nod4 [/home/www]# php composer.phar require 
> googleads/googleads-php-lib
> Do not run Composer as root/super user! See https://getcomposer.org/root 
> for details
> Using version ^29.0 for googleads/googleads-php-lib
> ./composer.json has been updated
> Loading composer repositories with package information
> Updating dependencies (including require-dev)
> Your requirements could not be resolved to an installable set of packages.
>
>   Problem 1
> - Installation request for googleads/googleads-php-lib ^29.0 -> 
> satisfiable by googleads/googleads-php-lib[29.0.0].
> - Conclusion: remove google/auth v0.11.1
> - Conclusion: don't install google/auth v0.11.1
> - googleads/googleads-php-lib 29.0.0 requires google/auth ^1.0.0 -> 
> satisfiable by google/auth[v1.0, v1.0.1].
> - Can only install one of: google/auth[v1.0, v0.11.1].
> - Can only install one of: google/auth[v1.0.1, v0.11.1].
> - Installation request for google/auth (locked at v0.11.1) -> 
> satisfiable by google/auth[v0.11.1].
>
>
> Installation failed, reverting ./composer.json to its original content.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3e663651-efa2-4887-8f81-d2aa447566f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Googel Adwords API - Reporting - (ParallelReportDownload.php) need the data in an array format

2017-09-08 Thread Pradeep Kumar
Hi Everyone,

This is Pradeep ( Web Programmer - PHP ). I am using google adwords api to 
get campaigns reports. While i am accessing the reports 
from ParallelReportDownload.php then i can see the report is being 
downloaded into excel format.

I don't want an report to be download. I want the result in an array format 
after searching a lot on google.com i found a method which is getAsString() 
that is returning the result in a string format it is not useful for me 
till now.

Can you please help me to fix this issues.

Thank  You

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8d52ee32-8162-49cb-b5ce-41a14a971001%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing locations in the Geo Targets API

2017-09-08 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Sean, 

You are right, we don't have the criterion Id - location name mapping 
documented for those locations that cannot be targeted using AdWords. The 
criterion id "2364" is associated with Iran. Unfortunately, there may not 
be a way to map the ids that are missing in the GeoTargets table to a 
location name. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8ebf28d2-de4a-424a-83ce-850408fa93e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Difference between display planner and adwords API results

2017-09-08 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi Jorge,

Display Planner functionality is still unavailable in the AdWords API. I'd 
recommend subscribing to our blog 
 so you'll 
be notified If and when this functionality is made available.

Cheers,
Josh, AdWords API Team

On Friday, September 8, 2017 at 5:21:02 AM UTC-4, jorge.ch...@sendgrid.com 
wrote:
>
>
> Hi Josh,
>
> It's been a year your post below. Just wondering if there's the current 
> Adwords API supports Display Planner functionality now.
>
> Thanks!
> Jorge
>
>
> On Thursday, May 12, 2016 at 11:48:25 AM UTC-7, Josh Radcliff (AdWords API 
> Team) wrote:
>>
>> Hi,
>>
>> The AdWords API does not have functionality equivalent to the *Display 
>> Planner* (see my earlier response), but the services I mentioned 
>> previously are very similar to the *Keyword Planner*. If you are 
>> actually trying to tie results back to the *Keyword Planner*, then 
>> please refer to the *Mapping to the Keyword Planner* section of each 
>> guide. If that still does not help, please provide more details of the 
>> requests you are submitting and the options you are choosing in the user 
>> interface.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Thursday, May 12, 2016 at 7:25:35 AM UTC-4, Mohammed Ez-zamzemy wrote:
>>>
>>> i have the same problem with google adword api ,however using the same 
>>> settings (keyword, related-to-URL, location) I get different results from 
>>> manual searches in the display ad planner.
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bcb58247-493f-4127-b07c-c1c7cc8b92a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWords API Center Not there under new interface

2017-09-08 Thread cv
Oh.. Yes!

Thanks for guiding.


On Friday, 8 September 2017 11:02:25 UTC+5:30, cv wrote:
>
> Hello,
>
> Adwords API Center is not there under settings with new Adwords Interface 
> (UI).
>
> Please let me know how I can access this, under New Adwords UI.
>
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e534729e-a54c-41f8-8afb-befa1608ab0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [8-7315000019058] From basic to standart access level Adwords API

2017-09-08 Thread Владимир Дорохин
Hi, Ryan.

sorry for the silence.

I asked the developers, but I have not received an answer yet.

I plan to return with an answer by the middle of next week.



2017-09-05 19:43 GMT+03:00 :

> Hi,
>
> Thanks for reaching out.Please provide your production MCC ID
>
> Best,
> Ryan.
> 
> AdWords API Compliance
>
>
> *Note:* Please keep your dev contact up to date
>  at all
> times
>
> Signing up for the AdWords API
>  | AdWords
> API policies  |
> FAQs  | Developer Forum
> 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAO-wwnNiW6_Y%3DOT8warZfv4Sgua%2BVWHK0OcydRMx242_B6DQSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to send offline sales data to google adwords?

2017-09-08 Thread rohit . patil
HI,
 
I have an offline sale and online site for that daily purchase and 
conversion are successfully tracked by the Google AdWords.
For offline sale, I want to track this conversion on the Adwords

Is it possible to send the sales data to the AdWords manually through the 
API or something?

If yes, can you please suggest the possible ways?

-- 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/34d29b46-086c-43bb-b365-5acb84081432%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


how to setting Dynamic ad settings for Display campaign by adwords api

2017-09-08 Thread wyfttp




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ce4d1485-0a94-4318-9d1e-46854d791b07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.