Re: How to get bulk keywords stats using PHP Client

2011-03-09 Thread Androidman
I fix its all.. thank you. No need reply. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message becaus

Re: How to get bulk keywords stats using PHP Client

2011-03-09 Thread Androidman
Hi Veer, If use your original script, You can get all the results by changing $paging->numberResults = 1; to $paging->numberResults = 4; //where 4 is number of your keywords. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blog

Re: How to get bulk keywords stats using PHP Client

2011-03-09 Thread Androidman
Hi, can you help me? I have same project and problem with Veer. I try your solution and got this error. [RequiredError.REQUIRED @ selector.searchParameters[1].keywords[0].text, RequiredError.REQUIRED @ selector.searchParameters[1].keywords[0].matchType, RequiredError.REQUIRED @ selector.searchP

Re: How to get bulk keywords stats using PHP Client

2010-05-27 Thread calford
hi, try this $keyword_array = array($keyword1, $keyword2, $keyword3, $keyword4); $relatedToKeywordSearchParameter = new RelatedToKeywordSearchParameter($keyword_array); instead of $relatedToKeywordSearchParameter = new RelatedToKeywordSearchParameter(); $relatedToKeywordSearchParameter->k

How to get bulk keywords stats using PHP Client

2010-05-27 Thread Veer
Hi I am trying to fetch the keyword search volume, For a single keyword I am able to get the AVERAGE_TARGETED_MONTHLY_SEARCHES, GLOBAL_MONTHLY_SEARCHES etc. But is there any way to get stats for multiple keywords in one api call. I had tried like this: