Hello,
I'm trying to get started making my first api call with the adwords_on_rails example but I'm getting this error when I click on "list accounts" in localhost:3000
Environment 'PRODUCTION' does not support version 'v201806'
# First get the AdWords manager account ID.
customer_srv = adwords.service(:CustomerService, get_api_version())
customers = customer_srv.get_customers()
adwords.credential_handler.set_credential(
:client_customer_id, customers.first[:customer_id])
List of things I have:
- a test developer token
- a oauth2 client id
- a oauth2 client secret
- a manager account (no billing information)
- a test manager account
- accounts under test manager account (they all show as canceled due to missing billing information. However when I try to update it says it's not possible because the account is inactive)
List of things I did:
- installed the latest version of ruby
- Filled-in the adwords_api.yml file and put it under project > config
- ran rails server and clicked on "list accounts"
Has somebody seen this issue before? I suspect I'm missing something simple.
Thanks,