I was wondering where the documentation for the ruby 0.8.6 api is? I can only find the one for 0.9.pre3. In particular, I was wondering how to post parameters such as name or webURL that aren't put into the url. Basically I'm looking for documentation on the 'execute' function. The only `execute` I can find in the 0.9.pre3 docs is
http://www.rubydoc.info/github/google/google-api-ruby-client/Google/Apis/Core/HttpCommand#execute-instance_method, which seems different. I've tried the following:
analytics = client.discovered_api('analytics', 'v3')
resp = client.execute(:api_method => analytics.management.webproperties.insert, :parameters => {
'accountId' => account_id,
}, :options => { 'name' => 'testname' })
I've also tried putting `name` in parameters. I'm really just guessing here.
Any help would be really appreciated!