Skip to content

Commit d5b87e0

Browse files
Fix: Correct authorization endpoint URL in StartGG and Tiltify provider (#300)
Co-authored-by: Alex Kahn <[email protected]>
1 parent 3f09466 commit d5b87e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/providers/startgg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createOAuth2Request, sendTokenRequest } from "../request.js";
22

33
import type { OAuth2Tokens } from "../oauth2.js";
44

5-
const authorizationEndpoint = "https://start.gg/oauth/authoriz";
5+
const authorizationEndpoint = "https://start.gg/oauth/authorize";
66
const tokenEndpoint = "https://api.start.gg/oauth/access_token";
77
const refreshEndpoint = "https://api.start.gg/oauth/refresh";
88

src/providers/tiltify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createOAuth2Request, sendTokenRequest } from "../request.js";
22

33
import type { OAuth2Tokens } from "../oauth2.js";
44

5-
const authorizationEndpoint = "https://v5api.tiltify.com/oauth/authorizeze";
5+
const authorizationEndpoint = "https://v5api.tiltify.com/oauth/authorize";
66
const tokenEndpoint = "https://v5api.tiltify.com/oauth/token";
77

88
export class Tiltify {

0 commit comments

Comments
 (0)