module Strava::Api::Endpoints::OAuth

Public Instance Methods

deauthorize(options = {}) click to toggle source

Revoke access to an athlete's data.

# File lib/strava/api/endpoints/oauth.rb, line 8
def deauthorize(options = {})
  Strava::Models::Authorization.new(post('deauthorize', { endpoint: Strava::OAuth.config.endpoint }.merge(options)))
end