class OAuth2::AccessToken

def from_kvform(client, kvform)

Returns:
  • (AccessToken) - the initialized AccessToken

Parameters:
  • kvform (String) -- the application/x-www-form-urlencoded string
  • client (Client) -- the OAuth2::Client instance
def from_kvform(client, kvform)
  from_hash(client, Rack::Utils.parse_query(kvform))
end