You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
> [!NOTE]
2
+
> The Auth.js/NextAuth.js project is not provided by, nor otherwise affiliated with Vercel Inc. or its subsidiaries. Any contributions to this project by individuals affiliated with Vercel are made in their personal capacity.
Copy file name to clipboardexpand all lines: apps/dev/qwik/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ pnpm preview # or `pnpm preview`
58
58
59
59
## Production
60
60
61
-
The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.
61
+
The production build will generate client and server modules by running both client and server build commands. The build command will use TypeScript to run a type check on the source code.
Copy file name to clipboardexpand all lines: apps/examples/qwik/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ pnpm preview # or `pnpm preview`
58
58
59
59
## Production
60
60
61
-
The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.
61
+
The production build will generate client and server modules by running both client and server build commands. The build command will use TypeScript to run a type check on the source code.
Copy file name to clipboardexpand all lines: docs/pages/getting-started/providers/microsoft-entra-id.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ In `.env.local` create the following entries:
161
161
```
162
162
AUTH_MICROSOFT_ENTRA_ID_ID=<copy Application (client) ID here>
163
163
AUTH_MICROSOFT_ENTRA_ID_SECRET=<copy generated client secret value here>
164
-
AUTH_MICROSOFT_ENTRA_ID_ISSUER=<copy the issuer here>
164
+
AUTH_MICROSOFT_ENTRA_ID_ISSUER=https://login.microsoftonline.com/<copy the issuer here>/v2.0
165
165
```
166
166
167
167
That will default the tenant to use the `common` authorization endpoint. [For more details see here](https://learn.microsoft.com/en-us/entra/identity-platform/v2-protocols#endpoints).
Copy file name to clipboardexpand all lines: docs/pages/getting-started/providers/postmark.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,9 @@ If someone provides the email address of an _existing account_ when signing in,
27
27
28
28
## Configuration
29
29
30
-
1. First, you'll need to [add your domain](https://postmark.com/domains) to your Postmark account. This is required by Postmark and this domain of the address you use in the `from` provider option.
30
+
1. First, you'll need to [add your domain](https://account.postmarkapp.com/sign_up) to your Postmark account. This is required by Postmark and this domain of the address you use in the `from` provider option.
31
31
32
-
2. Next, you will have to generate an API key in the [Postmark Dashboard](https://postmark.com/api-keys). You can save this API key as the `AUTH_POSTMARK_KEY` environment variable.
32
+
2. Next, you will have to generate an API key in the [Postmark Dashboard](https://account.postmarkapp.com/api_tokens). You can save this API key as the `AUTH_POSTMARK_KEY` environment variable.
Copy file name to clipboardexpand all lines: docs/pages/getting-started/session-management/get-session.mdx
+5
Original file line number
Diff line number
Diff line change
@@ -205,3 +205,8 @@ app.get("/", (req, res) => {
205
205
</Code>
206
206
207
207
If you'd like to extend your session with more fields from your OAuth provider, for example, please check out our ["extending the session" guide](/guides/extending-the-session).
208
+
209
+
<Callout>
210
+
By default, GET requests to the session endpoint will automatically return the
0 commit comments