We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 470efb2 commit 730d539Copy full SHA for 730d539
index.js
@@ -256,7 +256,7 @@ export const revoke = async (
256
'Content-Type': 'application/x-www-form-urlencoded',
257
};
258
if (includeBasicAuthorization) {
259
- headers.Authorization = `basic ${base64.encode(`${clientId}:${clientSecret}`)}`;
+ headers.Authorization = `Basic ${base64.encode(`${clientId}:${clientSecret}`)}`;
260
}
261
/**
262
Identity Server insists on client_id being passed in the body,
0 commit comments