File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ export class OAuth {
758
758
nonce ?: string ,
759
759
user_id ?: string ,
760
760
) : Promise < Types . VerifyIDToken > {
761
- return this . http . postForm ( `${ OAUTH_BASE_PREFIX } /verify` , {
761
+ return this . http . postForm ( `${ OAUTH_BASE_PREFIX_V2_1 } /verify` , {
762
762
id_token,
763
763
client_id,
764
764
nonce,
Original file line number Diff line number Diff line change @@ -1120,7 +1120,7 @@ describe("oauth", () => {
1120
1120
const client_id = "test_client_id" ;
1121
1121
const nonce = "test_nonce" ;
1122
1122
const user_id = "test_user_id" ;
1123
- const scope = nock ( OAUTH_BASE_PREFIX , interceptionOption )
1123
+ const scope = nock ( OAUTH_BASE_PREFIX_V2_1 , interceptionOption )
1124
1124
. post ( "/verify" , {
1125
1125
id_token,
1126
1126
client_id,
You can’t perform that action at this time.
0 commit comments