module Slack::Web::Api::Endpoints::OauthV2

def oauth_v2_access(options = {})

Other tags:
    See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/oauth.v2/oauth.v2.access.json -
    See: https://api.slack.com/methods/oauth.v2.access -

Options Hash: (**options)
  • :redirect_uri (Object) --
  • :client_secret (Object) --
  • :client_id (Object) --
  • :code (Object) --
def oauth_v2_access(options = {})
  throw ArgumentError.new('Required arguments :code missing') if options[:code].nil?
  post('oauth.v2.access', options)
end