Skip to content

Commit

Permalink
Fix localhost:3000 links (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper authored Sep 15, 2023
1 parent 349c696 commit 67870cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Github OAuth in Electron"
description: "Learn how to implement Github OAuth in Electron desktop applications"
---

> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](http://localhost:3000/guidebook/github-oauth) guide for regular websites first.
> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](/guidebook/github-oauth) guide for regular websites first.
We'll be using bearer tokens instead of cookies to validate users. For the most part, authenticating the user is identical to regular web applications. The user is redirected to Github, then back to your server with a `code`, which is then exchanged for an access token, and a new user/session is created.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Github OAuth in Expo"
description: "Learn how to implement Github OAuth in Expo mobile applications"
---

> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](http://localhost:3000/guidebook/github-oauth) guide for regular websites first.
> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](/guidebook/github-oauth) guide for regular websites first.
We'll be using bearer tokens instead of cookies to validate users. For the most part, authenticating the user is identical to regular web applications. The user is redirected to Github, then back to your server with a `code`, which is then exchanged for an access token, and a new user/session is created.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Github OAuth in Tauri"
description: "Learn how to implement Github OAuth in Tauri desktop applications"
---

> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](http://localhost:3000/guidebook/github-oauth) guide for regular websites first.
> These guides are not beginner friendly and do not cover the basics of Lucia. We recommend reading the [Github OAuth](/guidebook/github-oauth) guide for regular websites first.
We'll be using bearer tokens instead of cookies to validate users. For the most part, authenticating the user is identical to regular web applications. The user is redirected to Github, then back to your server with a `code`, which is then exchanged for an access token, and a new user/session is created. The hard part is sending the session token (ie. session id) from the server back to our application.

Expand Down

0 comments on commit 67870cd

Please sign in to comment.