module Slack::Web::Auth

Module for the auth methods.

Constants

SCOPE

Endpoint scope

Public Instance Methods

auth_test(params = {}) click to toggle source

Checks authentication & identity.

@param [Hash] params

API call arguments

@see api.slack.com/methods/auth.test

# File lib/slack/web/auth.rb, line 17
def auth_test(params = {})
  response = @session.do_post "#{SCOPE}.test", params
  Slack.parse_response(response)
end