Closed alvaritez closed 2 years ago
There is an error in one of the examples in the README file, in the "Obtaining Item-related data" section:
request = Plaid::ItemPublicTokenExchangeRequest.new request.public_token = public_token response = client.item_public_token_exchange(request) access_token = response.access_token auth_get_request = Plaid::AuthGetRequest.new auth_get_request.access_token = access_token auth_response = client.auth_get(access_token) # ==> should be auth_response = client.auth_get(auth_get_request) auth = auth_response.auth
thank you for the report! This is fixed and will go out in the next client library release (currently scheduled for this week). See also https://github.com/plaid/plaid-ruby/pull/410
There is an error in one of the examples in the README file, in the "Obtaining Item-related data" section: