-
Notifications
You must be signed in to change notification settings - Fork 661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add better support for App Level Tokens #1153
Comments
As you mentioned, apps.event.authorizations.list & apps.connections.open are the only ones that require an app-level token. @stevengill |
We moved this task to v6.3 or later. |
Is there a way to differentiate between app-level tokens and other tokens? It wasn't clear in the token types documentation. |
@filmaj - App-level tokens are prefaced with |
@srajiang cool, thanks for the confirmation. So, it should be possible for the SDK to hide away the details of the kind of token and handle checking it, figuring the type out, possibly setting some internal flags on the token type? This way we can keep the API the same for the user (a single Ideally, whatever approach we decide on (single |
As the server-side returns |
@seratch do you mean you prefer to surface the error returned by the server-side API instead of complicating the token handling logic in the SDK? From my perspective, I think having two separate properties for the user to leverage, |
@filmaj If you are thinking about the following update (see the pattern 3 in the code below), I agree that it can be a great improvement in terms of developer experience. const appLevelToken = "xapp-...";
const botToken = "xoxb-...";
// The following two ways are currently supported
// 1) WebClient tries to use the token anyway
const client = new WebClient(appLevelToken);
const response = await client.apps.connections.open({});
// 2) Developers can pass any type of tokens in the method arguments
const client = new WebClient();
const response = await client.apps.connections.open({token: appLevelToken});
// 3) We may want to add a new option appToken here
// The first argument can be absent (undefined) if a developer does not want to have
const client = new WebClient(botToken, { appToken: appLevelToken });
// WebClient chooses appToken over the token for you
const response = await client.apps.connections.open({}); If you are thinking of some approach to check the prefix of token string values, in general, I don't recommend using it to determine when to use and how. I know that our platform never changed the prefix for tokens. However, we've changed ID prefixes for channels, users, and so on in the past (e.g., U/W for users, C/G for channels (now we don't have G prefix)). Taking place the assumption that there will be only single pattern for the token string prefix can be a cause of unexpected issues in the future. Also, I do understand that the suggested argument addition in the above code 3) is not intuitive ... but I cannot think of any alternatives. This is because the constructor arguments of |
@seratch yes the above approach is what I was considering, but I trust your view on this and will follow your recommendation. Your suggested approach (3) would be an OK alternative, but I don't believe it addresses the need to educate users (especially first-timers) about when and how the app token is used - so we will need to make sure to clearly document this difference. |
Description
Related to #1132, We need to add better support for App Level Token in
@slack/web-api
.I'm thinking we either pass in App Level Token in the
token
property (this works today), or we introduce a newappToken
property. If we introduce a newappToken
property, we could add code to make certain api calls useappToken
overtoken
(which is usually a bot token).apps.event.authorizations.list
&apps.connections.open
currently require an App Level Token. Not sure if there are any other web-api methods that currently do.What type of issue is this? (place an
x
in one of the[ ]
)Requirements (place an
x
in each of the[ ]
)The text was updated successfully, but these errors were encountered: