Module: Slack::Web::Api::Endpoints::Auth

Included in:
Slack::Web::Api::Endpoints
Defined in:
lib/slack/web/api/endpoints/auth.rb

Instance Method Summary collapse

Instance Method Details

#auth_revoke(options = {}) ⇒ Object

Revokes a token.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :test (boolean)

    Setting this parameter to 1 triggers a testing mode where the specified token will not actually be revoked.

See Also:



16
17
18
# File 'lib/slack/web/api/endpoints/auth.rb', line 16

def auth_revoke(options = {})
  post('auth.revoke', options)
end

#auth_test(options = {}) ⇒ Object

Checks authentication & identity.



25
26
27
# File 'lib/slack/web/api/endpoints/auth.rb', line 25

def auth_test(options = {})
  post('auth.test', options)
end