Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Use Query Params Instead of Parm Map for auth/token (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen authored Jul 4, 2024
1 parent 09bd39c commit 0808666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/response/se.response.handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class SEResponseHandler {
) {
const redirectUrl = `${
referer ?? process.env["CLIENT_URI"]
}auth/token;accessToken=${accessToken};refreshToken=${refreshToken}`;
}auth/token?access_token=${accessToken}&refresh_token=${refreshToken}`;
res.redirect(redirectUrl);
}

Expand Down

0 comments on commit 0808666

Please sign in to comment.