Skip to content

Commit

Permalink
fix refresh token path
Browse files Browse the repository at this point in the history
  • Loading branch information
SanterreJo committed Apr 12, 2024
1 parent d986432 commit 2856561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hiloApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function refreshTokenRequest() {
data.append("response_type", "token");
data.append("refresh_token", refreshToken!);
const response = await axios.post<RefreshTokenResponse>(
`${authServer}/HiloDirectoryB2C.onmicrosoft.com/B2C_1A_SIGN_IN/oauth2/v2.0/token`,
`${authServer}/HiloDirectoryB2C.onmicrosoft.com/B2C_1A_SIGN_IN/oauth2/v2.0/token?p=b2c_1a_sign_in`,
data
);

Expand Down

0 comments on commit 2856561

Please sign in to comment.