Skip to content

Commit c0073df

Browse files
committed
fixing edge cases where automated URL updating failed
1 parent c257259 commit c0073df

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/quickstart/native/net-android-ios/01-login.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ if (!loginResult.IsError)
190190

191191
### Obtaining the User Information
192192

193-
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipalv=vs.110" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.aspx).
193+
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipal(v=vs.110).aspx" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.
194194

195195
To obtain information about the user, you can query the claims. You can, for example, obtain the user's name and email address from the `name` and `email` claims:
196196

articles/quickstart/native/windows-uwp-csharp/01-login.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if (!loginResult.IsError)
7878

7979
### Obtaining the User Information
8080

81-
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipalv=vs.110" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.aspx).
81+
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipal(v=vs.110).aspx" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.
8282

8383
To obtain information about the user, you can query the claims. You can for example obtain the user's name and email address from the `name` and `email` claims:
8484

articles/quickstart/native/wpf-winforms/01-login.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if (!loginResult.IsError)
8282

8383
### Obtaining the User Information
8484

85-
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipalv=vs.110" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.aspx).
85+
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipal(v=vs.110).aspx" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.
8686

8787
To obtain information about the user, you can query the claims. You can for example obtain the user's name and email address from the `name` and `email` claims:
8888

articles/quickstart/native/xamarin/01-login.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ if (!loginResult.IsError)
183183

184184
### Obtaining the User Information
185185

186-
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipalv=vs.110" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.aspx).
186+
On successful login, the login result will contain the user information in the `User` property, which is a <a href="https://msdn.microsoft.com/en-us/library/system.security.claims.claimsprincipal(v=vs.110).aspx" target="_blank" rel="noreferrer">ClaimsPrincipal</a>.
187187

188188
To obtain information about the user, you can query the claims. You can, for example, obtain the user's name and email address from the `name` and `email` claims:
189189

articles/quickstart/webapp/nextjs/01-login.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The SDK will read these values from the Node.js process environment and automati
5050

5151
### Add the dynamic API route handler
5252

53-
Create a file at `app/api/auth/<a href="https://nextjs.org/docs/app/building-your-application/routing/route-handlers#dynamic-route-segments" target="_blank" rel="noreferrer">auth0/route.js`. This is your Route Handler file with a Dynamic Route Segment</a>.
53+
Create a file at `app/api/auth/[auth0]/route.js`. This is your Route Handler file with a <a href="https://nextjs.org/docs/app/building-your-application/routing/route-handlers#dynamic-route-segments" target="_blank" rel="noreferrer">Dynamic Route Segment</a>.
5454

5555
Then, import the `handleAuth` method from the SDK and call it from the `GET` export.
5656

0 commit comments

Comments
 (0)