-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Add Ory
provider
#10843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Add Ory
provider
#10843
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/** | ||
* <div style={{backgroundColor: "#000", display: "flex", justifyContent: "space-between", color: "#fff", padding: 16}}> | ||
* <span>Built-in <b>Ory</b> integration.</span> | ||
* <a href="https://www.ory.sh/"> | ||
* <img style={{display: "block"}} src="https://authjs.dev/img/providers/ory.svg" height="48" /> | ||
* </a> | ||
* </div> | ||
* | ||
* @module providers/ory | ||
*/ | ||
import type { OIDCConfig, OIDCUserConfig } from "./index.js" | ||
|
||
export interface DefaultOryProfile extends Record<string, any> { | ||
iss: string | ||
ver: string | ||
sub: string | ||
aud: string | ||
iat: string | ||
exp: string | ||
jti: string | ||
amr: string | ||
email?: string | ||
email_verified?: boolean | ||
preferred_username?: string | ||
website?: string | ||
given_name?: string | ||
family_name?: string | ||
name?: string | ||
updated_at?: Date | ||
} | ||
|
||
/** | ||
* Add login with Ory to your app. | ||
* | ||
* ### Setup | ||
* | ||
* #### Callback URL | ||
* | ||
* ``` | ||
* https://example.com/api/auth/callback/ory | ||
* ``` | ||
* | ||
* #### Configuration | ||
*```js | ||
* import Auth from "@auth/core" | ||
* import Ory from "@auth/core/providers/ory" | ||
* | ||
* const request = new Request(origin) | ||
* const response = await Auth(request, { | ||
* providers: [Ory({ | ||
* clientId: ORY_CLIENT_ID, | ||
* clientSecret: ORY_CLIENT_SECRET, | ||
* issuer: ORY_SDK_URL // https://ory.yourdomain.com | ||
* })], | ||
* }) | ||
* ``` | ||
* | ||
* ### Resources | ||
* | ||
* - [Ory + Auth.js integration](https://www.ory.sh/docs/getting-started/integrate-auth/auth-js) | ||
* - [Ory Documentation](https://www.ory.sh/docs) | ||
* | ||
* ### Notes | ||
* | ||
* This set up is optimized for Ory Network, a managed service by Ory. To use Auth.js with self-hosted Ory Hydra, use the `OryHydra` provider. | ||
* | ||
* The Ory integration is based on the [Open ID Connect](https://openid.net/specs/openid-connect-core-1_0.html) specification. | ||
* | ||
* :::tip | ||
* | ||
* The Ory provider comes with a [default configuration](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/ory.ts). | ||
* To override the defaults for your use case, check out [customizing a built-in OAuth provider](https://authjs.dev/guides/configuring-oauth-providers). | ||
* | ||
* ::: | ||
* | ||
* :::info **Disclaimer** | ||
* | ||
* If you think you found a bug in the default configuration, you can [open an issue](https://authjs.dev/new/provider-issue). | ||
* | ||
* Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from | ||
* the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec, | ||
* we might not pursue a resolution. You can ask for more help in [Discussions](https://authjs.dev/new/github-discussions). | ||
* | ||
* ::: | ||
*/ | ||
export default function Ory<P extends DefaultOryProfile>( | ||
options: OIDCUserConfig<P> | ||
): OIDCConfig<P> { | ||
return { | ||
id: "ory", | ||
name: "Ory", | ||
type: 'oidc', | ||
checks: ["pkce", "state", "nonce"], | ||
style: { | ||
bg: "#fff", | ||
text: "#0F172A", | ||
}, | ||
options, | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This page will be released once this PR is merged