You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"desc": "Exchanges a temporary OAuth verifier code for a user access token.",
3
+
"http_method": "POST",
4
+
"scope": {},
5
+
"rate_limits": "t5",
6
+
"args": {
7
+
"type": "object",
8
+
"discardAdditionalProperties": true,
9
+
"properties": {
10
+
"client_id": {
11
+
"desc": "Issued when you created your application. If possible, avoid sending `client_id` and `client_secret` as parameters in your request and instead supply the Client ID and Client Secret using the HTTP Basic authentication scheme.",
12
+
"example": "2141029472.691202649728",
13
+
"logged": true,
14
+
"type": "string"
15
+
},
16
+
"client_secret": {
17
+
"desc": "Issued when you created your application. If possible, avoid sending `client_id` and `client_secret` as parameters in your request and instead supply the Client ID and Client Secret using the HTTP Basic authentication scheme.",
18
+
"example": "e1b9e11dfcd19c1982d5de12921e17e8c",
19
+
"type": "string"
20
+
},
21
+
"code": {
22
+
"desc": "The `code` param returned via the OAuth callback.",
"desc": "Exchanges a temporary OAuth verifier code for a user access token.",
6
+
"args": {
7
+
"client_id": {
8
+
"required": null,
9
+
"example": "2141029472.691202649728",
10
+
"desc": "Issued when you created your application. If possible, avoid sending client_id and client_secret as parameters in your request and instead supply the Client ID and Client Secret using the HTTP Basic authentication scheme.",
11
+
"type": "string"
12
+
},
13
+
"client_secret": {
14
+
"required": null,
15
+
"example": "e1b9e11dfcd19c1982d5de12921e17e8c",
16
+
"desc": "Issued when you created your application. If possible, avoid sending client_id and client_secret as parameters in your request and instead supply the Client ID and Client Secret using the HTTP Basic authentication scheme.",
"access_denied": "Access to a resource specified in the request is denied.",
58
+
"accesslimited": "Access to this method is limited on the current network.",
59
+
"account_inactive": "Authentication token is for a deleted user or workspace when using a bot token.",
60
+
"bad_client_secret": "Value passed for `client_secret` was invalid.",
61
+
"bad_redirect_uri": "Value passed for `redirect_uri` did not match the `redirect_uri` in the original request.",
62
+
"cannot_install_an_org_installed_app": "Returned when the the org-installed app cannot be installed on a workspace.",
63
+
"deprecated_endpoint": "The endpoint has been deprecated.",
64
+
"ekm_access_denied": "Administrators have suspended the ability to post a message.",
65
+
"enterprise_is_restricted": "The method cannot be called from an Enterprise.",
66
+
"fatal_error": "The server could not complete your operation(s) without encountering a catastrophic error. It's possible some aspect of the operation succeeded before the error was raised.",
67
+
"invalid_arg_name": "The method was passed an argument whose name falls outside the bounds of accepted or expected values. This includes very long names and names with non-alphanumeric characters other than _. If you get this error, it is typically an indication that you have made a very malformed API call.",
68
+
"invalid_array_arg": "The method was passed an array as an argument. Please only input valid strings.",
69
+
"invalid_charset": "The method was called via a POST request, but the charset specified in the Content-Type header was invalid. Valid charset names are: utf-8 iso-8859-1.",
70
+
"invalid_client_id": "Value passed for `client_id` was invalid.",
71
+
"invalid_code": "Value passed for `code` was invalid.",
72
+
"invalid_form_data": "The method was called via a POST request with Content-Type application/x-www-form-urlencoded or multipart/form-data, but the form data was either missing or syntactically invalid.",
73
+
"invalid_grant_type": "Value passed for `grant_type` was invalid.",
74
+
"invalid_post_type": "The method was called via a POST request, but the specified Content-Type was invalid. Valid types are: application/json application/x-www-form-urlencoded multipart/form-data text/plain.",
75
+
"invalid_refresh_token": "The given refresh token is invalid.",
76
+
"is_bot": "This method cannot be called by a legacy bot.",
77
+
"method_deprecated": "The method has been deprecated.",
78
+
"missing_post_type": "The method was called via a POST request and included a data payload, but the request did not include a Content-Type header.",
79
+
"missing_scope": "The token used is not granted the specific scope permissions required to complete this request.",
80
+
"no_permission": "The workspace token used in this request does not have the permissions necessary to complete the request. Make sure your app is a member of the conversation it's attempting to post a message to.",
81
+
"no_scopes": "Missing `scope` in the request.",
82
+
"no_user_scopes": "Missing user `scope` in the auth request.",
83
+
"not_allowed_token_type": "The token type used in this request is not allowed.",
84
+
"not_authed": "No authentication token provided.",
85
+
"not_implemented": "Method not yet supported",
86
+
"oauth_authorization_url_mismatch": "The OAuth flow was initiated on an incorrect version of the authorization url. The flow must be initiated via /oauth/v2/authorize .",
87
+
"org_login_required": "The workspace is undergoing an enterprise migration and will not be available until migration is complete.",
88
+
"preview_feature_not_available": "Returned when the API method is not yet available on the team in context.",
89
+
"ratelimited": "The request has been ratelimited. Refer to the Retry-After header for when to retry the request.",
90
+
"request_timeout": "The method was called via a POST request, but the POST data was either missing or truncated.",
91
+
"service_unavailable": "The service is temporarily unavailable.",
92
+
"team_added_to_org": "The workspace associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete.",
93
+
"token_expired": "Authentication token has expired.",
94
+
"token_revoked": "Authentication token is for a deleted user or workspace or the app has been removed when using a user token.",
95
+
"two_factor_setup_required": "Two factor setup is required.",
96
+
"unknown_method": "This method is currently not available.",
97
+
"user_email_unverified": "The users email is unverified"
0 commit comments