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 4721836 commit 53d6eaeCopy full SHA for 53d6eae
packages/endpoint-auth/lib/controllers/introspection.js
@@ -10,7 +10,6 @@ export const introspectionController = {
10
*/
11
post(request, response) {
12
try {
13
- const { application } = request.app.locals;
14
let { token } = request.body;
15
16
if (!token) {
@@ -21,7 +20,6 @@ export const introspectionController = {
21
20
let accessToken = verifyToken(token);
22
accessToken = {
23
active: true,
24
- client_id: application.url,
25
...accessToken,
26
};
27
0 commit comments