Yin Niu, Thank you for your reply. I reviewed the link you suggested but I see I am doing the same basic steps:
1. Create my AdWords user object. 2. Call BatchJobService.mutate() // this works and it returns an uploadURL. 3. Create BatchJobUtilities object with the same AdWords user. 4. Call BatchJobUtilities.upload(uploadURL, myOperations) // This line fails and returns: SignatureDoesNotMatch So, based on your response, which parameters am I supposed to provide and how? I don't create any signature myself, I think the AdWords library does it. Just in case it helps in any way, this is how I create my AdWords user: AdWordsUser adWordsUser = new AdWordsUser(); AdWordsAppConfig config = (AdWordsAppConfig)adWordsUser.Config; config.OAuth2Mode = Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION; config.DeveloperToken = myDeveloperToken; config.OAuth2ClientId = myClientId; config.OAuth2ClientSecret = myClientSecret; config.OAuth2AccessToken = myAccessToken; config.OAuth2RefreshToken = myRefreshToken; config.ClientCustomerId = oneOfMyClientsCustomerId; adWordsUser.OAuthProvider.RefreshAccessToken(); As I mentioned before, sending items to AdWords API one by one works. I am not sure what else special I need to do to upload items in batch. And, could you please mention what parameters are included in the "Signature"? Thanks. On Tuesday, April 26, 2016 at 8:34:01 AM UTC-5, Yin Niu wrote: > > Hi, > > The error is saying the parameters to the method do not match method > signature. Please check out this example > <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201601/campaignmanagement/AddCompleteCampaignsUsingBatchJob.java> > . > > Thanks, > Yin, 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. 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/320f8889-8745-44b6-8f57-686bb7ada6a8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
