Re: Error Bad Gateway (and others) most of time since this morning

2015-05-29 Thread Pierre Augereau
Good morning Nadine.

Once again, thank you a lot for your answers !!
Today, it seems to work fine again. But, I turned off all access from the 
API yesterday all day long. I do not know if it is a coincidence or the 
good thing to do...

Some requests succeed if I try again. But, the number of errors are 
increasing (eg : 1 error on 5 requests without trying again ; 3 errors on 5 
requests with trying again) 

About the request ID, I checked all logs (request_info.log - soap_xml.log - 
report_download.log). There is no request ID for each error. 
So, it seems to have a problem while sending requests... I also checked all 
logs on my side and, all request have been correctly send from my server.
I will still investigate with my network administrator to, maybe, find 
something. But, I still do not know why that kind of errors appears 
suddently without any change on my side...

Thank you again,
Have a good day,
Best regards.


Le jeudi 7 mai 2015 17:33:02 UTC+2, Pierre Augereau a écrit :
>
> Good afternoon,
>
> Since this morning (May 7th 2015), I have got many errors : 
> - "Bad Gateway"
> - "Failed to load response into DOM: DOMDocument::loadXML(): Empty string 
> supplied as input in 
> **/Google/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php on 
> line 268"
> - "[WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from '
> https://adwords.google.com/api/adwords/cm/v201502/AdGroupCriterionService?wsdl'
>  
> : failed to load external entity "
> https://adwords.google.com/api/adwords/cm/v201502/AdGroupCriterionService?wsdl
> "
>  in 
> **/Google/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php:172"
> - Uncaught exception 'ReportDownloadException' with message 'Report 
> download failed.' in 
> **/Google/src/Google/Api/Ads/AdWords/Util/ReportUtils.php:211
>
> I'm currently using the PHP librairy v201502.
> I already have asked to my network administrators if there were any update 
> on the network. All requests sent through the API are correctly transmitted
> Moreover, I did not have updated any source code from those past few days
>
> It seems to that most of request to get data from Adwords accounts have 
> this problem...
> However, some requests to put data (such as new amount on a spécific key 
> words) works fine 2/3 call
>
>
> So, I really do not understand what is happening since this morning
>
>
> Best regards.
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fc13e94b-cc3a-47ef-8365-2c3a1a7c7f28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Changing bids for individual keywords , using experment compare the results and if necessary to remove unsuccessful experments

2015-05-29 Thread Sarah Riddell



Hi Josh,

Sorry to disturb you again because i am stucked again. please help me out 
of this.When i am trying to set Max. CPC for invidividual keyword i am 
getting a weird situation .

When i downloaded keyword report two keyword with (same id + same 
keyword_text) are withing same adgroup  but different adnetworktype2. then 
the problem is when i am trying to set Max CPC for individual 
keywords with different values , i am in a fix how to select my individual 
keywords . i have attached a png here with field names

Please help me out as you help me previously. Thanks in advance.

Or advice/provide some example code to update keyword Max CPC bid .

KEYWORD FIND
=
//Update keyword.
$keyword = new Keyword($value['keyword_text'], 
$value['keyword_match_type'], $value['id']);  // here no way to specify ad 
network type 2 like goole search or search partner


TOTAL CODE
==
// Create ad group bid multipliers to be used in the experiment.
$adGroupBidMultipliers = new 
ManualCPCAdGroupCriterionExperimentBidMultiplier();
$adGroupBidMultipliers->maxCpcMultiplier = new 
BidMultiplier($value['experiment_bid_multiplier']);


// Create experiment data for a new experiment-only keyword.
$adGroupCriterionExperimentData =new 
BiddableAdGroupCriterionExperimentData();
$adGroupCriterionExperimentData->experimentId = $experimentId;
$adGroupCriterionExperimentData->experimentDeltaStatus = 
'MODIFIED';

$adGroupCriterionExperimentData->experimentBidMultiplier=$adGroupBidMultipliers;

//Update keyword.
$keyword = new Keyword($value['keyword_text'], 
$value['keyword_match_type'], $value['id']);

// Create ad group criterion.
$adGroupCriterion = new BiddableAdGroupCriterion();
$adGroupCriterion->adGroupId = $value['adgroup_id'];
$adGroupCriterion->criterion = $keyword;

$adGroupCriterion->experimentData = 
$adGroupCriterionExperimentData;


// Create operation.
$adGroupCriterionOperation = new AdGroupCriterionOperation();
$adGroupCriterionOperation->operand = $adGroupCriterion;
$adGroupCriterionOperation->operator = 'SET';

$adGroupCriterionOperations = array($adGroupCriterionOperation);

// Make the mutate request.
$result = 
$adGroupCriterionService->mutate($adGroupCriterionOperations);

>
>> Thanks,
>>
>> Sany
>>
>>>


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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e59c0965-d4f6-4ce6-846a-25de2cb9f7f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PHP API Test server

2015-05-29 Thread Samuel Correa
Olá Pessoal sou novo no fórum, estou começando a aprender sobre API do 
Google AdWords, criei uma MCC Teste porem não estou conseguindo autenticar 
pelo 

DEFAULT_SERVER = "https://adwords-sandbox.google.com";
pois ele me retorna o seguinte erro 

An error has occured: SOAP-ERROR: Parsing WSDL: coldn't load from 
'https://adwords-sandbox.google.com/api/adwords/cm/v201409/CampaingService?wsdl'
 
: failed to load external entity 
'https://adwords-sandbox.google.com/api/adwords/cm/v201409/CampaingService?wsdl'

Alguém pode me ajudar por favor?

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ef8aa914-cec3-43c2-93e6-f081d3ae8902%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't select both Amount and TotalBudget

2015-05-29 Thread tuong
Hello,

I've been testing the Adwords API with Ruby. And either I'm 
misunderstanding something or there's a bug: If I try to select both the 
Amount and the TotalBudget of a Campaign Performance Report, I end up with 
only a single column 'Budget' in the resulting CSV. Looking at the 
available fields 
at 
https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report
 
also shows that both the Amount and TotalBudget field have the same XML 
Attribute 'budget' which also strikes me as incorrect.

Here is a code snippet:

report_definition =
{
:selector =>
{
:fields => ['Amount', 'TotalBudget']
},

:report_name => 'TEST CAMPAIGN_PERFORMANCE_REPORT',
:report_type => 'CAMPAIGN_PERFORMANCE_REPORT',
:download_format => 'CSV',
:date_range_type => 'TODAY',
:include_zero_impressions => true
}

report_utils.download_report_as_file(report_definition, "test.csv")

I'm using the :v201502 API-version and have attached the downloaded 
test.csv where you can see that only 1 column exists.

Could somebody tell me whether I'm doing something wrong or if this is 
actually a bug?

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4308c678-e6a6-4bde-85a5-04f207337dfc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
"TEST CAMPAIGN_PERFORMANCE_REPORT (May 29, 2015)"
Budget
100
Total


Upload multiple Offline Conversions

2015-05-29 Thread Anton Georgiev
I'm uploading multiple offline conversions at once using 
OfflineConversionFeedService (operation: mutate).

I started uploading 100 conversions at once but some of them are expired 
and I'm getting this error message: OfflineConversionError.EXPIRED_CLICK. 
This is perfectly OK, because some of the conversions are really expired 
but I'm wondering if the rest of them are uploaded correctly.

Here are two test cases for better understanding of the situation:

Case 1:
- starting uploading 100 conversions
- error message (exception) was thrown because one of the conversions is 
expired
- the other 99 conversions were not uploaded because there was error with 
the mutate operation for this stack of 100 conversions

Case 2:
- starting uploading 100 conversions
- error message (exception) was thrown because one of the conversions is 
expired
- the other 99 conversions were uploaded

Is there a way to check which case is valid? I couldn't find a way to 
export an offline conversion by gclid and I couldn't make a sanity check on 
my data.

Anton

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2b1b09ca-8bcf-47af-a04a-ff5109cac1db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Long Value For One Indian Rupees (INR 1/-)

2015-05-29 Thread prashant . jagadale
Hi Guys,

 I am doing some project for uploading campaigns. Using java apis provided 
by Adwords. I want to know what is Long value that is equal to One Indian 
Rupee (INR).

INR 1 = ? Long.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fd5a7671-ff79-4414-8999-ef8fbbb2a3ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Updates latency

2015-05-29 Thread David Cochard
Hi,

Could you please confirm if there is any latency for an API update to be 
live (by live I don't mean visible in the UI but actually interpreted by 
AdWords' engine)?

I heard that AdWords works on 15min slots and I'm wondering how it impacts 
updates. 
For example, if I change a bid at 3:05 pm and change it back to its 
previous value at 3:10 pm, I can definitively see both updates in the UI as 
soon as the API call is executed, but does it mean that the temporary bid 
will be used during these 5 minutes or will it be ignored?

My question raised following the release of an AdWords script that boosts 
keywords based on a timesheet of TV spots air dates in which these 15 min 
slots are mentioned.

Thanks.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/55052829-34a1-4951-8f0e-b72d6a8c8812%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/api/adwords/cm/v201502/AdGroupAdService?wsdl'

2015-05-29 Thread Anthony Madrigal
Hello,

Were you able to access the URLs on your web browser or by using cURL? 

Regards,
Anthony, 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/82bc3d50-6088-4223-b5f2-7774e55628d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Updates latency

2015-05-29 Thread Michael Cloonan (AdWords API Team)
Hello,

Changes made via the API are in effect when the response is sent. If you 
update the bid, the bidding changes should be reflected right away in 
auctions.

Regards,
Mike, AdWords API Team

On Friday, May 29, 2015 at 9:47:00 AM UTC-4, David Cochard wrote:
>
> Hi,
>
> Could you please confirm if there is any latency for an API update to be 
> live (by live I don't mean visible in the UI but actually interpreted by 
> AdWords' engine)?
>
> I heard that AdWords works on 15min slots and I'm wondering how it impacts 
> updates. 
> For example, if I change a bid at 3:05 pm and change it back to its 
> previous value at 3:10 pm, I can definitively see both updates in the UI as 
> soon as the API call is executed, but does it mean that the temporary bid 
> will be used during these 5 minutes or will it be ignored?
>
> My question raised following the release of an AdWords script that boosts 
> keywords based on a timesheet of TV spots air dates in which these 15 min 
> slots are mentioned.
>
> Thanks.
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c8d30fe4-8135-4e97-907b-405e5d6ce69d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: INVALID_FORMAT_FOR_PLACEMENT_URL

2015-05-29 Thread Michael Cloonan (AdWords API Team)
Hello,

The string you posted is not a valid URL. Please try starting your URL with 
"http://";, and leave off the "::Computer..." etc. information that you have 
at the end of the URL.

Regards,
Mike, AdWords API Team

On Thursday, May 28, 2015 at 5:58:26 PM UTC-4, Y Cha wrote:
>
> Hi,
>
> Been getting INVALID_FORMAT_FOR_PLACEMENT_URL for some of the Placement 
> urls (e.g., 
>
> wikihow.com::Computer /Electronic,Multiple locations
>
> ). Is there way to get more specific info?  Even though I got the error 
> message, all the placement urls showed up on the MCC.
>
> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e2231f9c-d268-4fba-aa97-d0cba4540d0e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't update po_number for ended budget

2015-05-29 Thread Kimsrung Lov
Hi there,

I got an error while I was trying to use set request to update po_number 
and amount when its budget order was already ended. I'm not sure if I could 
have done it wrong. Here is my selector:
{:billing_account_id=> my_billing_id,
:budget_order_name=>"Development Budget", 
:spending_limit=>{:xsi_type=>"Money", :micro_amount=>100}, 
:id=> my_id, 
:po_number=>"Testing Purpose"}
Enter code here...

but I got this [BudgetOrderError.INVALID_BUDGET_DATE_RANGE @ 
operations[0].operand.endDateTime; trigger:'End date cannot be in the 
past']. Sometimes, I got an error with start date.

Hope someone can help me with that.

Best,
kimsrung

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8963c066-048a-46a7-be38-79943c8eca27%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error Bad Gateway (and others) most of time since this morning

2015-05-29 Thread Nadine Sundquist (AdWords API Team)
Hi Pierre,

If you are not getting back a request ID, this means that the failed 
requests are not making it to our servers. In that case, I can't 
troubleshoot from our side. You may need to sit down with a network 
administrator to trace the failed requests. 

Best,
Nadine, AdWords API Team 

On Friday, May 29, 2015 at 2:19:02 AM UTC-7, Pierre Augereau wrote:
>
> Good morning Nadine.
>
> Once again, thank you a lot for your answers !!
> Today, it seems to work fine again. But, I turned off all access from the 
> API yesterday all day long. I do not know if it is a coincidence or the 
> good thing to do...
>
> Some requests succeed if I try again. But, the number of errors are 
> increasing (eg : 1 error on 5 requests without trying again ; 3 errors on 5 
> requests with trying again) 
>
> About the request ID, I checked all logs (request_info.log - soap_xml.log 
> - report_download.log). There is no request ID for each error. 
> So, it seems to have a problem while sending requests... I also checked 
> all logs on my side and, all request have been correctly send from my 
> server.
> I will still investigate with my network administrator to, maybe, find 
> something. But, I still do not know why that kind of errors appears 
> suddently without any change on my side...
>
> Thank you again,
> Have a good day,
> Best regards.
>
>
> Le jeudi 7 mai 2015 17:33:02 UTC+2, Pierre Augereau a écrit :
>>
>> Good afternoon,
>>
>> Since this morning (May 7th 2015), I have got many errors : 
>> - "Bad Gateway"
>> - "Failed to load response into DOM: DOMDocument::loadXML(): Empty string 
>> supplied as input in 
>> **/Google/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php on 
>> line 268"
>> - "[WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from '
>> https://adwords.google.com/api/adwords/cm/v201502/AdGroupCriterionService?wsdl'
>>  
>> : failed to load external entity "
>> https://adwords.google.com/api/adwords/cm/v201502/AdGroupCriterionService?wsdl
>> "
>>  in 
>> **/Google/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php:172"
>> - Uncaught exception 'ReportDownloadException' with message 'Report 
>> download failed.' in 
>> **/Google/src/Google/Api/Ads/AdWords/Util/ReportUtils.php:211
>>
>> I'm currently using the PHP librairy v201502.
>> I already have asked to my network administrators if there were any 
>> update on the network. All requests sent through the API are correctly 
>> transmitted
>> Moreover, I did not have updated any source code from those past few days
>>
>> It seems to that most of request to get data from Adwords accounts have 
>> this problem...
>> However, some requests to put data (such as new amount on a spécific key 
>> words) works fine 2/3 call
>>
>>
>> So, I really do not understand what is happening since this morning
>>
>>
>> Best regards.
>>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/37c70282-ab3b-4f0d-b5e1-1ad015ac1fec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't select both Amount and TotalBudget

2015-05-29 Thread Nadine Sundquist (AdWords API Team)
Hi,

It looks like you are doing everything correctly. A quick check on our end 
shows that the two fields are pointing to the same data on the back-end. 
I'm having someone take a look to see if this is an issue or if this is 
documentation that needs to be updated.

Cheers,
Nadine, AdWords API Team

On Friday, May 29, 2015 at 6:47:21 AM UTC-7, tu...@intelligentmobils.com 
wrote:
>
> Hello,
>
> I've been testing the Adwords API with Ruby. And either I'm 
> misunderstanding something or there's a bug: If I try to select both the 
> Amount and the TotalBudget of a Campaign Performance Report, I end up with 
> only a single column 'Budget' in the resulting CSV. Looking at the 
> available fields at 
> https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report
>  
> also shows that both the Amount and TotalBudget field have the same XML 
> Attribute 'budget' which also strikes me as incorrect.
>
> Here is a code snippet:
>
> report_definition =
> {
> :selector =>
> {
> :fields => ['Amount', 'TotalBudget']
> },
>
> :report_name => 'TEST CAMPAIGN_PERFORMANCE_REPORT',
> :report_type => 'CAMPAIGN_PERFORMANCE_REPORT',
> :download_format => 'CSV',
> :date_range_type => 'TODAY',
> :include_zero_impressions => true
> }
>
> report_utils.download_report_as_file(report_definition, "test.csv")
>
> I'm using the :v201502 API-version and have attached the downloaded 
> test.csv where you can see that only 1 column exists.
>
> Could somebody tell me whether I'm doing something wrong or if this is 
> actually a bug?
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/04d5e8fd-642a-46a5-97ab-a70557728db5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Upgraded URLs - matching URL and Display URLs?

2015-05-29 Thread Chris Allan
Hi Guys,

I just want to confirm something regarding the need for the domain in the 
(Final/Dest) URL and display URL to match

1) If the display url is mydomain.com and the actual URL is 
www.mydomain.com I presume this will be considered a match?
2) I presume the match logic is not case-sensitive i.e Mydomain.com and 
mydomain.com would be considered a match?

Cheers,

Chris

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f4db7c6b-1498-43fe-8dd1-26f891fc954e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Changing bids for individual keywords , using experment compare the results and if necessary to remove unsuccessful experments

2015-05-29 Thread Josh Radcliff (AdWords API Team)
Hi Sany,

Could you create a new post for this question? We try to keep each post to 
*one* topic -- this makes it much easier for others with similar questions 
to find the answers they need.

Thanks,
Josh, AdWords API Team

On Friday, May 29, 2015 at 4:12:02 AM UTC-7, Sarah Riddell wrote:
>
>
> 
> Hi Josh,
>
> Sorry to disturb you again because i am stucked again. please help me out 
> of this.When i am trying to set Max. CPC for invidividual keyword i am 
> getting a weird situation .
>
> When i downloaded keyword report two keyword with (same id + same 
> keyword_text) are withing same adgroup  but different adnetworktype2. then 
> the problem is when i am trying to set Max CPC for individual 
> keywords with different values , i am in a fix how to select my individual 
> keywords . i have attached a png here with field names
>
> Please help me out as you help me previously. Thanks in advance.
>
> Or advice/provide some example code to update keyword Max CPC bid .
>
> KEYWORD FIND
> =
> //Update keyword.
> $keyword = new Keyword($value['keyword_text'], 
> $value['keyword_match_type'], $value['id']);  // here no way to specify ad 
> network type 2 like goole search or search partner
>
>
> TOTAL CODE
> ==
> // Create ad group bid multipliers to be used in the experiment.
> $adGroupBidMultipliers = new 
> ManualCPCAdGroupCriterionExperimentBidMultiplier();
> $adGroupBidMultipliers->maxCpcMultiplier = new 
> BidMultiplier($value['experiment_bid_multiplier']);
>
>
> // Create experiment data for a new experiment-only keyword.
> $adGroupCriterionExperimentData =new 
> BiddableAdGroupCriterionExperimentData();
> $adGroupCriterionExperimentData->experimentId = $experimentId;
> $adGroupCriterionExperimentData->experimentDeltaStatus = 
> 'MODIFIED';
> 
> $adGroupCriterionExperimentData->experimentBidMultiplier=$adGroupBidMultipliers;
>
> //Update keyword.
> $keyword = new Keyword($value['keyword_text'], 
> $value['keyword_match_type'], $value['id']);
>
> // Create ad group criterion.
> $adGroupCriterion = new BiddableAdGroupCriterion();
> $adGroupCriterion->adGroupId = $value['adgroup_id'];
> $adGroupCriterion->criterion = $keyword;
>
> $adGroupCriterion->experimentData = 
> $adGroupCriterionExperimentData;
>
>
> // Create operation.
> $adGroupCriterionOperation = new AdGroupCriterionOperation();
> $adGroupCriterionOperation->operand = $adGroupCriterion;
> $adGroupCriterionOperation->operator = 'SET';
>
> $adGroupCriterionOperations = 
> array($adGroupCriterionOperation);
>
> // Make the mutate request.
> $result = 
> $adGroupCriterionService->mutate($adGroupCriterionOperations);
>
>>
>>> Thanks,
>>>
>>> Sany
>>>

>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cfa0c976-66a2-4f02-b0c8-49419cca6cb7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Upload multiple Offline Conversions

2015-05-29 Thread Josh Radcliff (AdWords API Team)
Hi Anton,

By default either *all* operations succeed in a given *mutate* request or 
*all* operations fail. Using your example, if a single *mutate* request 
contains 100 operations and one of them fails, then *none* of the 
operations will be applied.

The good news is that you can change this behavior by setting the 
*partialFailure* header to *true*. Please check out our Partial failure 
guide 
 for 
more details.

Thanks,
Josh, AdWords API Team

On Friday, May 29, 2015 at 6:47:21 AM UTC-7, Anton Georgiev wrote:
>
> I'm uploading multiple offline conversions at once using 
> OfflineConversionFeedService (operation: mutate).
>
> I started uploading 100 conversions at once but some of them are expired 
> and I'm getting this error message: OfflineConversionError.EXPIRED_CLICK. 
> This is perfectly OK, because some of the conversions are really expired 
> but I'm wondering if the rest of them are uploaded correctly.
>
> Here are two test cases for better understanding of the situation:
>
> Case 1:
> - starting uploading 100 conversions
> - error message (exception) was thrown because one of the conversions is 
> expired
> - the other 99 conversions were not uploaded because there was error with 
> the mutate operation for this stack of 100 conversions
>
> Case 2:
> - starting uploading 100 conversions
> - error message (exception) was thrown because one of the conversions is 
> expired
> - the other 99 conversions were uploaded
>
> Is there a way to check which case is valid? I couldn't find a way to 
> export an offline conversion by gclid and I couldn't make a sanity check on 
> my data.
>
> Anton
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f18cdb04-3e82-4ade-a237-bdd96f9107ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't update po_number for ended budget

2015-05-29 Thread Anthony Madrigal
Hello Kimsrung,

It appears that you are missing the *startDateTime *and *endDateTime *in 
your selector. Those fields are required. You can find more information on 
those fields here 
.
 
Once you include them, you should no longer get that error.

Regards,
Anthony, 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a91b810c-95b3-4e9a-bc68-d4dfd47e9f90%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Unable to add Ad Customizers Data

2015-05-29 Thread rc1375
Hi All,

I am trying to create the Ad Customizer Feed. Ad customizer feed is created 
but while sending the feed data I am getting UNEXPECTED_INTERNAL_API_ERROR 
error. I am unable to figure out the issue, I have below added the Request 
and Response. Can you please help me to figure out the problem here? Please 
let me know if anything else is needed.

AdsClientLibs.DetailedRequestLogs Error: 1 : 
-BEGIN API CALL-

Request
---

POST /api/adwords/cm/v201502/FeedItemService
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client 
Protocol 4.0.30319.17929)
Authorization: **
VsDebuggerCausalityData: 
uIDPox2QyayQJL5CqnyiV/D0XUUAIZbHt4wDckCJ1QPVMrPLdrv/OcHtnKRAgGChvujR8k4ACQAA
Content-Type: text/xml; charset=utf-8
SOAPAction: ""
Host: adwords.google.com
Content-Length: 1225
Accept-Encoding: gzip
TimeStamp: Fri, 29 May 2015 11:20:33 GMT
http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  
https://adwords.google.com/api/adwords/cm/v201502";>
  https://adwords.google.com/api/adwords/cm/v201502";>**
  https://adwords.google.com/api/adwords/cm/v201502";>XXX-XXX-
  https://adwords.google.com/api/adwords/cm/v201502";>XX 
(AwApi-DotNet/18.10.0, Common-Dotnet/3.5.0, .NET CLR/4.0.30319.17929, 
gzip)

  
  
https://adwords.google.com/api/adwords/cm/v201502";>
  
ADD

  {FeedID}
  
1
294
  
  
{CampaignID}
  
  
{adgroupID}
  

  

  



Response


Content-Encoding: 
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 533
Cache-Control: private, max-age=0
Content-Type: text/xml; charset=UTF-8
Date: Fri, 29 May 2015 15:20:41 GMT
Expires: Fri, 29 May 2015 15:20:41 GMT
Server: GSE
TimeStamp: Fri, 29 May 2015 11:20:33 GMT


http://schemas.xmlsoap.org/soap/envelope/";>
  
https://adwords.google.com/api/adwords/cm/v201502";>
  0005173a04e0a7180ac4a804b6000ca4
  FeedItemService
  mutate
  0
  131

  
  

  soap:Server
  [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]
  
https://adwords.google.com/api/adwords/cm/v201502";>
  [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]
  
ApiException
  http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="InternalApiError">



InternalApiError.UNEXPECTED_INTERNAL_API_ERROR
InternalApiError
UNEXPECTED_INTERNAL_API_ERROR
  

  

  

-END API CALL---


Regards,

Kamran

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1928fe40-dca6-4fc4-82c0-f2e467ff780a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Long Value For One Indian Rupees (INR 1/-)

2015-05-29 Thread Raghavendra Soudala (AdWords API Team)
Hi Prashant,

1 currency unit will always be equal to 100 micros irrespective of the 
currency. So it means 1 INR = 100 micros in your case.

Make sure your *account currency* *code* is set INR. Also, see our docs on 
money amounts in reports  
for
 
more explanation. 

Cheers,
Raghavendra, AdWords API Team.
Response Links


On Friday, May 29, 2015 at 9:47:01 AM UTC-4, 
prashant.jagad...@indexnine.com wrote:
>
> Hi Guys,
>
>  I am doing some project for uploading campaigns. Using java apis provided 
> by Adwords. I want to know what is Long value that is equal to One Indian 
> Rupee (INR).
>
> INR 1 = ? Long.
>
> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/efbaf06f-f772-4a50-9b8b-1650a9b7eb0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Upgraded URLs - matching URL and Display URLs?

2015-05-29 Thread Raghavendra Soudala (AdWords API Team)
Hi Chris,

Please see our display URL policy guide 
 
for 
more information.

If you have any additional questions, please use Contact AdWords Support 
 link in the above 
guide.

Cheers,
Raghavendra, AdWords API Team.

On Friday, May 29, 2015 at 1:17:41 PM UTC-4, Chris Allan wrote:
>
> Hi Guys,
>
> I just want to confirm something regarding the need for the domain in the 
> (Final/Dest) URL and display URL to match
>
> 1) If the display url is mydomain.com and the actual URL is 
> www.mydomain.com I presume this will be considered a match?
> 2) I presume the match logic is not case-sensitive i.e Mydomain.com and 
> mydomain.com would be considered a match?
>
> Cheers,
>
> Chris
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5270ca29-b4e1-46b4-8a08-ddfa4d82d9f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Upgraded URLs - matching URL and Display URLs?

2015-05-29 Thread Chris Allan
Hi Raghavendra,

Thanks for your reply, but as far as I can tell the policy guide does not 
answer either of my questions. I will contact AdWords support as you 
suggest, but if anyone could directly reply with an answer here that would 
be appreciated.

On Friday, May 29, 2015 at 5:13:40 PM UTC-5, Raghavendra Soudala (AdWords 
API Team) wrote:
>
> Hi Chris,
>
> Please see our display URL policy guide 
> 
>  for 
> more information.
>
> If you have any additional questions, please use Contact AdWords Support 
>  link in the 
> above guide.
>
> Cheers,
> Raghavendra, AdWords API Team.
>
> On Friday, May 29, 2015 at 1:17:41 PM UTC-4, Chris Allan wrote:
>>
>> Hi Guys,
>>
>> I just want to confirm something regarding the need for the domain in the 
>> (Final/Dest) URL and display URL to match
>>
>> 1) If the display url is mydomain.com and the actual URL is 
>> www.mydomain.com I presume this will be considered a match?
>> 2) I presume the match logic is not case-sensitive i.e Mydomain.com and 
>> mydomain.com would be considered a match?
>>
>> Cheers,
>>
>> Chris
>>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7423511b-ba48-473e-8f8b-12dfa6b85a8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Add Experiment & set Bid Multiplier for Max. CPC

2015-05-29 Thread Sany Ahmed



Hi Josh,

As you told me to make new post. this is it.

When i downloaded keyword report two keyword with (same id + same 
keyword_text) are withing same adgroup  but different adnetworktype2. then 
the problem is when i am trying to set Max CPC for individual keywords with 
different values , i am in a fix how to select my individual keywords . i 
have attached a png here with field names

Please help me out as you help me previously.i am looking for you helpful 
suggestion. Thanks in advance.

Or advice/provide some example code to add keyword Max. CPC bid for 
experiment.

KEYWORD FIND
=
 //Find keyword to set experimental Max CPC
 $keyword = new Keyword($value['keyword_text'], 
$value['keyword_match_type'], $value['id']);  // here no way to specify ad 
network type2 like google search or search partner


TOTAL CODE
==

function AddExperimentAndSetBidMultiplier(AdWordsUser $user, $campaignId, 
$adGroupId) {
   
 // Get the services, which loads the required classes.
$experimentService = $user->GetService('ExperimentService', 
ADWORDS_VERSION);
$adGroupService = $user->GetService('AdGroupService', ADWORDS_VERSION);
$adGroupCriterionService = $user->GetService('AdGroupCriterionService', 
ADWORDS_VERSION);

// Create experiment.
$experiment = new Experiment();
$experiment->campaignId = $campaignId;
$experiment->name = 'experiment bid mulitplier for individual keyword;
$experiment->queryPercentage = 50;

// Set additional settings (optional).
$experiment->startDateTime = date('Ymd His', strtotime('+1 day'));
$experiment->endDateTime = date('Ymd His', strtotime('+1 month'));

// Create operation.
$experimentOperation = new ExperimentOperation();
$experimentOperation->operand = $experiment;
$experimentOperation->operator = 'ADD';

$experimentOperations = array($experimentOperation);

// Make the mutate request.
$result = $experimentService->mutate($experimentOperations);

// Display result.
$experiment = $result->value[0];
printf ("Experiment with name '%s' and ID '%.0f' was added.\n", 
$experiment->name, $experiment->id);


// Create ad group bid multipliers to be used in the experiment.
$adGroupBidMultipliers = new 
ManualCPCAdGroupCriterionExperimentBidMultiplier();
$adGroupBidMultipliers->maxCpcMultiplier = new 
BidMultiplier($value['experiment_bid_multiplier']); //values from my 
database


// Create experiment data for a new experiment-only keyword.
$adGroupCriterionExperimentData =new 
BiddableAdGroupCriterionExperimentData();
$adGroupCriterionExperimentData->experimentId =  
$experiment->id; //experiment i have created on my campaign 
now

$adGroupCriterionExperimentData->experimentDeltaStatus = 
'MODIFIED';

$adGroupCriterionExperimentData->experimentBidMultiplier=$adGroupBidMultipliers;

//Find KEYWORD to SET Max. CPC
$keyword = new Keyword($value['keyword_text'], 
$value['keyword_match_type'], $value['id']);  //values from my database to 
find keyword


// Create ad group criterion.
$adGroupCriterion = new BiddableAdGroupCriterion();
$adGroupCriterion->adGroupId = $value['adgroup_id'];   //values 
from my database

$adGroupCriterion->criterion = $keyword;

$adGroupCriterion->experimentData = 
$adGroupCriterionExperimentData;


// Create operation.
$adGroupCriterionOperation = new AdGroupCriterionOperation();
$adGroupCriterionOperation->operand = $adGroupCriterion;
$adGroupCriterionOperation->operator = 
'ADD'; //Here i need to SET or ADD operator at the time 
of adding experimental Max CPC?


$adGroupCriterionOperations = array($adGroupCriterionOperation);

// Make the mutate request.
$result = 
$adGroupCriterionService->mutate($adGroupCriterionOperations);

// Display result.
   $adGroup = $result->value[0];
   printf ("Ad group with name '%s' and ID '%.0f' was updated in 
the ".experiment.\n", $adGroup->name, $adGroup->id);

}

Thanks,

Sany

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

Re: Changing bids for individual keywords , using experment compare the results and if necessary to remove unsuccessful experments

2015-05-29 Thread Sany Ahmed
Hi Josh,

I have created new post as you told me, please see that  tiitle  "Add 
Experiment & set Bid Multiplier for Max. CPC"

Thanks in advance.

Sany

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/887f84a9-10c8-4c5e-bf4c-95dcd1181080%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AD_EXTENSIONS_PERFORMANCE_REPORT

2015-05-29 Thread cvit sandeep

Thank you Raghvendra

It is working well. Now  we want to remove the ad extensions like sitelink, 
call extension, callout extension etc.
How can we remove these extensions? 

On Wednesday, May 20, 2015 at 12:37:24 PM UTC+5:30, cvit sandeep wrote:
>
> Hi Adword Team,
> We don't get the report of sitelink extension, callout extension,  call 
> extension etc.  We are using "AD_EXTENSIONS_PERFORMANCE_REPORT" report 
> type. But it returns only the header information only. Which report type 
> can be used for getting the result of sitelink, call or callout extension.
>
> Regards
>
> Sandeep cv
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/25f9b566-aa29-440f-b2e8-b01a9f8f3fe8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.