Re: support for oAuth2?

2010-12-06 Thread Daniel Kehoe
On Dec 6, 1:34 pm, chris h wrote: > Interesting. If the API supports OAuth, that should be documented in > the API. But I can't even find a page on authentication in the docs. > Anyone have a link? Oauth support was added to the PHP client library in version 2.3.0 released Sep 15, 2010 (accordi

support for oAuth2?

2010-12-06 Thread Daniel Kehoe
I see that the PHP client library now has support for authentication using OAuth (as an alternative to Google Client Login). Is this OAuth or OAuth2? Is there support for OAuth2? I ask because I'm developing in Ruby and we have some nice libraries (rubygems) to easily implement OAuth2 (but not OA

Re: Unmarshalling Error for my XML for TargetingIdeaService

2010-10-20 Thread Daniel Kehoe
Finally got it. Just had to ask :-) Seems using correct namespaces are critical. Here's what works: http://schemas.xmlsoap.org/soap/ envelope/" xmlns:ns1="https://adwords.google.com/api/adwords/o/ v201008" xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201008"; xmlns:xsi="http://www.w3.o

Re: Unmarshalling Error for my XML for TargetingIdeaService

2010-10-20 Thread Daniel Kehoe
I've moved some inches forward by examining recent examples posted to the forum and I no longer get the "Unmarshalling Error" with the XML request I've assembled (below). Now I get the error: RequiredError.REQUIRED @ selector What am I missing? http://schemas.xmlsoap.org/soap/ envelope/" xmlns

Unmarshalling Error for my XML for TargetingIdeaService

2010-10-20 Thread Daniel Kehoe
I'm trying to use TargetingIdeaService. I've assembled XML myself because the adwords4r Ruby client library requires the soap4r gem which doesn't support Ruby 1.9 (and soap4r has a reputation in the Ruby community as slow!). I've found the Ruby Savon gem which performs well and is well-documented.