Skip to content

Commit

Permalink
Fix OAuth token endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevers committed Oct 11, 2024
1 parent 1c58a9b commit 9632983
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/OAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public function __construct(
$this->oauthConfig = OAuthConfig::make()
->setClientId($this->clientId)
->setClientSecret($this->clientSecret)
->setRedirectUri($this->redirectUri);
->setRedirectUri($this->redirectUri)
->setTokenEndpoint(self::TOKEN_URL);
}

public function resolveBaseUrl(): string
Expand Down

0 comments on commit 9632983

Please sign in to comment.