Skip to content

Commit

Permalink
Fix Atlassian provider (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
xyassini authored Jan 26, 2024
1 parent 3511fb9 commit ca15bc2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .auri/$ygs60su4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
package: "@lucia-auth/oauth"
type: "patch"
---

Fixed the endpoint used for exchanging authorization codes for the Atlassian provider
2 changes: 1 addition & 1 deletion packages/oauth/src/providers/atlassian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class AtlassianAuth<
access_token: string;
expires_in: number;
refresh_token?: string;
}>(code, "https://auth.atlassian.com/token", {
}>(code, "https://auth.atlassian.com/oauth/token", {
clientId: this.config.clientId,
redirectUri: this.config.redirectUri,
clientPassword: {
Expand Down

0 comments on commit ca15bc2

Please sign in to comment.