AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread PPL
Thank you Jaap and Jeff, Now I've got it by using adwords-api-3.0.0.jar. :) Thank you very much for your time. On Mar 13, 12:09 am, AdWords API Advisor wrote: > Hello, > >  After consulting with the Java client library's maintainer, I think > what is happening here is that you downloaded and a

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread ZYP
It works! So cool man! Keep going on! Cheers, Sitawit On Mar 13, 1:34 am, AdWords API Advisor wrote: > Hello, > >  Yes, there was just an update made a few minutes ago that will > hopefully restore functionality for most of our users. However, my > understanding is that there is another change

AdWords API Developer Token Format

2009-03-12 Thread gloradin
Hi, Somebody tell me the format of $developer_token? I receive a string with 22 characteres, but I saw in the Net other configuration for $developer_token, like em...@email.com++cur. What is the correct configuration? the 22 characteres or em...@email.com++cur? And if "em...@email.com++cur" is the

AdWords API Re: Average Rank - How is it Determined and Reported?

2009-03-12 Thread aknoch
Jeff, Thanks so much for helping out! I know this sounds confusing. That code was just a snippet that was hastily given to me by our lead developer. He explains the "daily API call for data" this way: Google has "yesterday's" data ready to be retrieved by about 7 am every day. We make the call,

AdWords API Re: Average Rank - How is it Determined and Reported?

2009-03-12 Thread AdWords API Advisor
Hello, I'm a little confused, because your report definition shows that you're running a report with Daily aggregation and requesting a date range that looks to be today's date (minus four hours) for both the start and end date. So the only data you're getting back is the data for the current da

AdWords API Re: Average Rank - How is it Determined and Reported?

2009-03-12 Thread aknoch
Thanks so much for your reply, Jeff! We do not use the getAdStats() call. This is what we use: DefinedReportJob report = new DefinedReportJob(); //KeywordReportJob report = new KeywordReportJob(); report.startDay = DateTime.Now.AddHours(-4);

AdWords API Re: timeout exception in addcriteria

2009-03-12 Thread AdWords API Advisor
Hello Ashish, As long as you don't run afoul of timeouts, either server-side or client-side, I don't believe that you'll be prevented from adding 1000 website criteria to an ad group at once. As per the "Policy Checking for Ads and Keywords" section of http://code.google.com/apis/adwords/do

AdWords API Re: Average Rank - How is it Determined and Reported?

2009-03-12 Thread AdWords API Advisor
Hello, First off, when you say you're getting this information in part from API calls, are you referring to the average position information returned via the getAdStats() call? http://code.google.com/apis/adwords/docs/developer/AdService.html#getAdStats If so, there's a note in that document

AdWords API Re: timeout exception in addcriteria

2009-03-12 Thread ashish
Hi Jeff thnks for the quick reply. i'll check for the exact error message that i was getting. but in the mean time could you just answer my another question that a. Is there a limit in the number of sites while using the batch request to create criteria b. In creating criteria with batch process

AdWords API Re: Average Rank - How is it Determined and Reported?

2009-03-12 Thread Peer
I'm not sure I understand your question, but are you running summary reports? If you run a by day report you should be able to get the correct rank for yesterday. As a rule, API reports and adwords UI reports should always match. They are pulled from the same source using the same code. Cheers,

AdWords API Average Rank - How is it Determined and Reported?

2009-03-12 Thread aknoch
HI, I have had numerous questions from clients regarding "where Average Rank" numbers come from. There seems to be no constancy between the Adwords interface, Adwords reports, and what we pull through our API calls. My question is, if we make our reporting call, what number is represented for ave

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread AdWords API Advisor
Hello, Yes, there was just an update made a few minutes ago that will hopefully restore functionality for most of our users. However, my understanding is that there is another change that the engineering team still needs to push out a bit later today, so I don't want to say that things are compl

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread Peer
It's working for us too. Thanks for looking into this Jeff. --~--~-~--~~~---~--~~ 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

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread snofink
I just tried it 5 minutes ago, and it's working for us. They must have just fixed it recently. --~--~-~--~~~---~--~~ 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-ap

AdWords API Re: timeout exception in addcriteria

2009-03-12 Thread AdWords API Advisor
Hello Ashish, Last time I check the AdWords API servers had rather generous server- side timeouts (in the order of a few minutes), so perhaps what you're running into is a client-side timeout that you have control over? Exactly how much time is elapsing before your connection times out, and is t

AdWords API timeout exception in addcriteria

2009-03-12 Thread ashish
Hi all i was trying to create website based criteria for my campaign. On trying to send an array of around 1000 site url list to adwords it gives me timout exception. Can anybody help me why this is happening and what is the max limit of number of site url that can be sent with one method call to

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread JZaza
Hi Jeff - have you got an update on this problem? I can't use the sadbox at all at the moment. Thanks. On Mar 11, 10:59 pm, AdWords API Advisor wrote: > Hello, > >  The engineering team is working to resolve what is believed to be the > cause of this Sandbox issue. Without getting into too many

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread AdWords API Advisor
Hello, After consulting with the Java client library's maintainer, I think what is happening here is that you downloaded and are using the awapi_java_lib_3.0.0_src.tar.gz package. This is fine in an of itself, but the package requires post-processing with AspectJ in order to manipulate the class

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread AdWords API Advisor
Hello, After consulting with the Java client library's maintainer, I think what is happening here is that you downloaded and are using the awapi_java_lib_3.0.0_src.tar.gz package. This is fine in an of itself, but the package requires post-processing with AspectJ in order to manipulate the class

AdWords API Re: get more information about mcc alerts with getMccAlerts

2009-03-12 Thread AdWords API Advisor
Hello Sander, I don't actually have any experience with the CreativeDisapproved or CampaignEnding alerts (although I'll look into triggering them in a test account), but you're right in that it doesn't look like there are fields in the alert that indicate which ad or campaign is the source. I'll

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread mark w.
I can't even do a simple AccountService::getClientAccounts right now with the Sandbox. Bad luck that! mark. On Mar 11, 8:44 am, "Peer Jakobsen (AdWords API Guru)" wrote: > Is any one else having problems using the sand box? > > Everything worked fine a couple of hours ago and now I get "An > i

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread Jaap
Dear PPL, I have copy-pasted all your codes, filled in my credentials and ran the program. It worked immediately, not giving me the exception that occurs in your code. The only thing that might be different between your and my code might be the library we are using. I am using adwords- api-3.0.0.

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread PPL
Dear Jaap, The following is my complete code. import java.net.URL; import com.google.api.adwords.lib.AdWordsUser; import com.google.api.adwords.v13.AccountInfo; import com.google.api.adwords.v13.AccountInterface; public class AccountServiceDemo { public static void main(String args[]) throws

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread Jaap
Hi PPL, I copied your code to try it out. The first error I get is: Exception in thread "main" java.lang.ClassCastException: com.google.api.adwords.v12.AccountServiceSoapBindingStub This happens because I have imported the v13 classes and it is trying to cast to v12. To fix this either switch to

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread PPL
Dear Jaap, Could you please send me the small working code(project) of that API, if possible? I'm facing the same error when I test other services. I want to know the usage of those services. Otherwise I can't even step further. :( Thank you. On Mar 12, 5:30 pm, PPL wrote: > Dear Jaap, > > Tha

AdWords API Re: Is the sandbox down right now?

2009-03-12 Thread ZYP
Alright! Well.. sometime I had the same problem with the real adwords api too. I check my internet speed it looks fine but I cannot connect to sandbox api or adwords api. Are they locate on the same location? sometime they have the same problem together. Anyway I'll wait for sandbox like you said

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread PPL
Dear Jaap, Thank you very much for your suggesstion. Below is my code. public static void main(String args[]) throws Exception { // Get credentials and service String email="a...@gmail.com"; String password="a"; String userAgent="JIT"; String cl

AdWords API Re: How to test in sand box with sample code provided by Google?

2009-03-12 Thread Jaap
Hi PPL, According to the google adwords API, AccountServiceSoapBindingStub extends org.apache.axis.client.Stub, and implements AccountInterface. The ClassCastException occurs because you are try to cast to a class which is not implemented nor extended by AccountServiceSoapBindingStub. Presumably

AdWords API get more information about mcc alerts with getMccAlerts

2009-03-12 Thread Sander Agricola @ Traffic4u
We are trying to build some sort of dashboard in which we can see all alerts including MCC alerts. I have been playing a little bit with the getMccAlerts function, but there is very little information i can get with this function. For example when there is a CreativeDisapproved alert, there is no