AdWords API Re: how do i start to use the Adwords api

2009-02-13 Thread ainihong001
i use the code below: # Provide AdWords login information. $email = 'INSERT_LOGIN_EMAIL_HERE'; $password = 'INSERT_PASSWORD_HERE'; $client_email = 'INSERT_CLIENT_LOGIN_EMAIL_HERE'; $useragent = 'INSERT_COMPANY_NAME: AdWords API PHP Sample Code'; $developer_token = 'INSERT_DEVELOPER_TOKEN_HERE';

AdWords API Re: java.lang.IllegalArgumentException: Can not set long field

2009-02-13 Thread x...@xorl.net
Ah, It might be caused by a loop, I forgot to add a check in to make sure it returned a group ID before continuing. But most of the time I only get that error and never a faultstring for the actual error. -Ryan On Feb 13, 10:43 am, AdWords API Advisor wrote: > Can you post a log of the outgoi

AdWords API Re: KeywordEstimate

2009-02-13 Thread AdWords API Advisor
The help center article on the web version of the TrafficEstimator tool provides some additional info (most of it will apply to the API version of the service as well): https://adwords.google.com/support/bin/answer.py?answer=8692 You can't estimate your CTR using just the data from this servic

AdWords API Re: java.lang.IllegalArgumentException: Can not set long field

2009-02-13 Thread AdWords API Advisor
Can you post a log of the outgoing SOAP request you're making (with your confidential token and password information X-ed out)? It looks like you're making some sort of call that requires an AdGroup object, and you're setting the id of that object to null (rather than leaving out the id field, or

AdWords API Re: how do i start to use the Adwords api

2009-02-13 Thread AdWords API Advisor
If you're just getting started with AdWords API development, I'd recommend that you first read through the official documentation: http://code.google.com/apis/adwords/docs/developer/index.html If your language of choice is PHP, I'd recommend that you use the APIlity client library instead of t

AdWords API Re: API Performance degradation

2009-02-13 Thread AdWords API Advisor
Hello, Report generation via the AdWords API uses the same backend code as report generation via the web interface, so what you're really seeing is not technically a slowdown in the API. If you were to generate an identical report from the web interface it should take the same amount of time.

AdWords API java.lang.IllegalArgumentException: Can not set long field

2009-02-13 Thread x...@xorl.net
I keep receiving this long extended java error message, it's driving me nuts. I cannot possibly figure this out either, I interface directly with the API with NuSOAP and php on a custom built platform using the API interface. I can't seem to figure out, I see the relation to "adGroupId" but I do

AdWords API how do i start to use the Adwords api

2009-02-13 Thread ainihong001
i have got developer_token and application_token, i use the demo of get_keyword_variations.php . But it returns "List of additional keywords to consider has 0 variation (s). List of popular queries with given seed has 0 variation(s).", it shows maybe the method of getKeywordVariations not work ri