Hi Alan,My colleague deleted your post to the Google Group because it contained your developer token. Per the forum posting rules, please avoid posting sensitive info to the group.Regarding the issue you're seeing, I'm not a PHP expert, but is there some way to get it to log the operations it is uploading to the BatchJob.uploadUrl? That should help us identify which portion of the XML is malformed.Thanks,Josh, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~On 04/08/16 06:51:50 boomf...@gmail.com wrote:You received this message because you are subscribed to the Google Groups "AdWords API Forum" group.Hello everyone,--I'm migrating from MutateJobService to BatchJobService and to get started am experimenting with a test account and a script derived from v201601\CampaignManagement\AddKeywordsUsingIncrementalBatchJob.phpI can add batches of Keywords and Negative Keywords no problem.However when I attempt to add a batch of TextAds I'm being returned the following error, which would indicate an issue with the input file.Processing error [0]: errorType=BatchJobProcessingError, trigger=, errorString=BatchJobProcessingError.FILE_FORMAT_ERROR, fieldPath=, reason=FILE_FORMAT_ERRORI'm building my TextAd in the usual fashion, see below, but I don't know what I'm doing to disturb the file formatting.Any help would be appreciated.Many thanks$textAd = new TextAd();$textAd->headline = 'Cruise #' . uniqid();$textAd->description1 = 'Visit the Red Planet in style.';$textAd->description2 = 'Low-gravity fun for everyone!';$textAd->displayUrl = 'www.example.com';$textAd->finalUrls = array('http://www.example.com');// Create ad group ad.$adGroupAd = new AdGroupAd();$adGroupAd->adGroupId = $adGroupId;$adGroupAd->ad = $textAd;// Set additional settings (optional).$adGroupAd->status = 'ENABLED';// Create AdGroupCriterionOperation.$operation = new AdGroupCriterionOperation();$operation->operand = $adGroupAd;$operation->operator = 'ADD';
Here is the soap log:[Apr 08 2016 12:45:14.000000 - INFO] POST /api/adwords/cm/v201601/BatchJobService HTTP/1.1Host: adwords.google.comConnection: Keep-AliveUser-Agent: PHP-SOAP/5.5.12Content-Type: text/xml; charset=utf-8SOAPAction: ""Content-Length: 682Authorization: Bearer ya29..vgI82mE2oDDj7y-BTMRqJ7BObPQgr4Ij5LEEJSwT60gHzTyHIwRZAetY<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201601"><SOAP-ENV:Header><ns1:RequestHeader><ns1:clientCustomerId>4702283134</ns1:clientCustomerId><ns1:developerToken>VoKD8l67LEE-vCKnep03Zg</ns1:developerToken><ns1:userAgent>FBT AdwordsLongtail Application (AwApi-PHP/8.2.1, Common-PHP/8.2.1, PHP/5.5.12)</ns1:userAgent><ns1:partialFailure>true</ns1:partialFailure></ns1:RequestHeader></SOAP-ENV:Header><SOAP-ENV:Body><ns1:mutate><ns1:operations><ns1:operator>ADD</ns1:operator><ns1:operand/></ns1:operations></ns1:mutate></SOAP-ENV:Body></SOAP-ENV:Envelope>HTTP/1.1 200 OKContent-Type: text/xml; charset=UTF-8Date: Fri, 08 Apr 2016 10:45:09 GMTExpires: Fri, 08 Apr 2016 10:45:09 GMTCache-Control: private, max-age=0X-Content-Type-Options: nosniffX-Frame-Options: SAMEORIGINX-XSS-Protection: 1; mode=blockServer: GSEAccept-Ranges: noneVary: Accept-EncodingTransfer-Encoding: chunked<?xml version="1.0"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><ResponseHeader xmlns="https://adwords.google.com/api/adwords/cm/v201601"><requestId>00052ff6e38ae4400a0dffc5a80b783f</requestId><serviceName>BatchJobService</serviceName><methodName>mutate</methodName><operations>1</operations><responseTime>314</responseTime></ResponseHeader></soap:Header><soap:Body><mutateResponse xmlns="https://adwords.google.com/api/adwords/cm/v201601"><rval><ListReturnValue.Type>BatchJobReturnValue</ListReturnValue.Type><value><id>46829465</id><status>AWAITING_FILE</status><uploadUrl><url>***</url><expiration>20160415 104509 Etc/GMT</expiration></uploadUrl><diskUsageQuotaBalance>1048682</diskUsageQuotaBalance></value></rval></mutateResponse></soap:Body></soap:Envelope>[Apr 08 2016 12:45:36.000000 - INFO] POST /api/adwords/cm/v201601/BatchJobService HTTP/1.1Host: adwords.google.comConnection: Keep-AliveUser-Agent: PHP-SOAP/5.5.12Content-Type: text/xml; charset=utf-8SOAPAction: ""Content-Length: 925Authorization: Bearer ya29..vgI82mE2oDDj7y-BTMRqJ7BObPQgr4Ij5LEEJSwT60gHzTyHIwRZAetY<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201601"><SOAP-ENV:Header><ns1:RequestHeader><ns1:clientCustomerId>4702283134</ns1:clientCustomerId><ns1:developerToken>VoKD8l67LEE-vCKnep03Zg</ns1:developerToken><ns1:userAgent>FBT AdwordsLongtail Application (AwApi-PHP/8.2.1, Common-PHP/8.2.1, PHP/5.5.12)</ns1:userAgent><ns1:partialFailure>true</ns1:partialFailure></ns1:RequestHeader></SOAP-ENV:Header><SOAP-ENV:Body><ns1:get><ns1:selector><ns1:fields>Id</ns1:fields><ns1:fields>Status</ns1:fields><ns1:fields>DownloadUrl</ns1:fields><ns1:fields>ProcessingErrors</ns1:fields><ns1:fields>ProgressStats</ns1:fields><ns1:predicates><ns1:field>Id</ns1:field><ns1:operator>EQUALS</ns1:operator><ns1:values>46829465</ns1:values></ns1:predicates></ns1:selector></ns1:get></SOAP-ENV:Body></SOAP-ENV:Envelope>HTTP/1.1 200 OKContent-Type: text/xml; charset=UTF-8Date: Fri, 08 Apr 2016 10:45:31 GMTExpires: Fri, 08 Apr 2016 10:45:31 GMTCache-Control: private, max-age=0X-Content-Type-Options: nosniffX-Frame-Options: SAMEORIGINX-XSS-Protection: 1; mode=blockServer: GSEAccept-Ranges: noneVary: Accept-EncodingTransfer-Encoding: chunked<?xml version="1.0"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><ResponseHeader xmlns="https://adwords.google.com/api/adwords/cm/v201601"><requestId>00052ff6e4d025e00ac154b23b0b48f0</requestId><serviceName>BatchJobService</serviceName><methodName>get</methodName><operations>1</operations><responseTime>357</responseTime></ResponseHeader></soap:Header><soap:Body><getResponse xmlns="https://adwords.google.com/api/adwords/cm/v201601"><rval><totalNumEntries>1</totalNumEntries><Page.Type>BatchJobPage</Page.Type><entries><id>46829465</id><status>CANCELED</status><progressStats><numOperationsExecuted>0</numOperationsExecuted><numOperationsSucceeded>0</numOperationsSucceeded><estimatedPercentExecuted>0</estimatedPercentExecuted><numResultsWritten>0</numResultsWritten></progressStats><downloadUrl><url>***</url><expiration>20160508 104515 Etc/GMT</expiration></downloadUrl><processingErrors><fieldPath/><trigger/><errorString>BatchJobProcessingError.FILE_FORMAT_ERROR</errorString><ApiError.Type>BatchJobProcessingError</ApiError.Type><reason>FILE_FORMAT_ERROR</reason></processingErrors></entries></rval></getResponse></soap:Body></soap:Envelope>
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
---
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit