Module: Slack::Web::Api::Endpoints::AppsAuthExternal
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/apps_auth_external.rb
Instance Method Summary collapse
-
#apps_auth_external_delete(options = {}) ⇒ Object
Delete external auth tokens only on the Slack side.
-
#apps_auth_external_get(options = {}) ⇒ Object
Get the access token for the provided token ID.
Instance Method Details
#apps_auth_external_delete(options = {}) ⇒ Object
Delete external auth tokens only on the Slack side
20 21 22 |
# File 'lib/slack/web/api/endpoints/apps_auth_external.rb', line 20 def apps_auth_external_delete( = {}) post('apps.auth.external.delete', ) end |
#apps_auth_external_get(options = {}) ⇒ Object
Get the access token for the provided token ID
33 34 35 36 |
# File 'lib/slack/web/api/endpoints/apps_auth_external.rb', line 33 def apps_auth_external_get( = {}) raise ArgumentError, 'Required arguments :external_token_id missing' if [:external_token_id].nil? post('apps.auth.external.get', ) end |