0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

fix(core): hard code resource access_token format (#216)

This commit is contained in:
simeng-li 2022-02-08 14:06:13 +08:00 committed by GitHub
parent c2c1215820
commit eac74fae40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,6 +57,7 @@ export default async function initOidc(app: Koa): Promise<Provider> {
const scope = scopes.map(({ name }) => name).join(' ');
return {
accessTokenFormat: 'jwt',
scope,
accessTokenTTL,
};