From 4976154e6d296bf90620d74365e656c9ee77cc19 Mon Sep 17 00:00:00 2001 From: Xiao Yijun Date: Mon, 22 Jan 2024 17:04:53 +0800 Subject: [PATCH] refactor(console): update go sdk integration guide (#5272) --- .../docs/guides/native-android/README.mdx | 4 +- .../src/assets/docs/guides/web-go/README.mdx | 171 ++++++++++-------- 2 files changed, 95 insertions(+), 80 deletions(-) diff --git a/packages/console/src/assets/docs/guides/native-android/README.mdx b/packages/console/src/assets/docs/guides/native-android/README.mdx index 2499c9cd2..b6a966f56 100644 --- a/packages/console/src/assets/docs/guides/native-android/README.mdx +++ b/packages/console/src/assets/docs/guides/native-android/README.mdx @@ -5,8 +5,6 @@ import Step from '@/mdx-components/Step'; -We use Kotlin in this example, but the concepts are the same for Java. - +We use Kotlin in this example, but the concepts are the same for Java. + Create a `LogtoViewModel.kt` and init `LogtoClient` in this view model:
diff --git a/packages/console/src/assets/docs/guides/web-go/README.mdx b/packages/console/src/assets/docs/guides/web-go/README.mdx
index ee14fcb9f..3044cb21d 100644
--- a/packages/console/src/assets/docs/guides/web-go/README.mdx
+++ b/packages/console/src/assets/docs/guides/web-go/README.mdx
@@ -6,15 +6,16 @@ import InlineNotification from '@/ds-components/InlineNotification';
 
 
 
+
 
   The following demonstration is built upon the Gin Web Framework.  
   You may also integrate Logto into other frameworks by taking the same steps.  
-  In the following code snippets, we assume your app is running on http://localhost:8080.
+  We assume your app is running on http://localhost:8080 in this guide.  
 
 
-Run in the project root directory:
+Execute in the project root directory:
 
 ```bash
 go get github.com/logto-io/go
@@ -27,25 +28,24 @@ Add the `github.com/logto-io/go/client` package to your application code:
 package main
 
 import (
-    "github.com/gin-gonic/gin"
-    // Add dependency
-    "github.com/logto-io/go/client"
+	"github.com/gin-gonic/gin"
+	// Add dependency
+	"github.com/logto-io/go/client"
 )
 
 func main() {
-    router := gin.Default()
-    router.GET("/", func(c *gin.Context) {
-        c.String(200, "Hello Logto!")
-    })
-    router.Run(":8080")
+	router := gin.Default()
+	router.GET("/", func(c *gin.Context) {
+		c.String(200, "Hello Logto!")
+	})
+	router.Run(":8080")
 }
 ```
 
 
 
 
 
 In traditional web applications, the user authentication information will be stored in the user session.
@@ -70,41 +70,37 @@ type Storage interface {
 }
 ```
 
-We will use [github.com/gin-contrib/sessions](https://github.com/gin-contrib/sessions) as an example to demonstrate this process.
+We use [github.com/gin-contrib/sessions](https://github.com/gin-contrib/sessions) middleware as an example to demonstrate this process.
 
-### Apply session middleware
-
-Apply the [github.com/gin-contrib/sessions](https://github.com/gin-contrib/sessions) middleware to the application, so that we can get the user session by the user request context in the route handler:
+Apply the middleware to the application, so that we can get the user session by the user request context in the route handler:
 
 ```go
 package main
 
 import (
-    "github.com/gin-contrib/sessions"
-    "github.com/gin-contrib/sessions/memstore"
-    "github.com/gin-gonic/gin"
-    "github.com/logto-io/go/client"
+	"github.com/gin-contrib/sessions"
+	"github.com/gin-contrib/sessions/memstore"
+	"github.com/gin-gonic/gin"
+	"github.com/logto-io/go/client"
 )
 
 func main() {
-    router := gin.Default()
+	router := gin.Default()
 
-    // We use memory-based session in this example
-    store := memstore.NewStore([]byte("your session secret"))
-    router.Use(sessions.Sessions("logto-session", store))
+	// We use memory-based session in this example
+	store := memstore.NewStore([]byte("your session secret"))
+	router.Use(sessions.Sessions("logto-session", store))
 
-    router.GET("/", func(ctx *gin.Context) {
-        // Get user session
-        session := sessions.Default(ctx)
-        // ...
-        ctx.String(200, "Hello Logto!")
-    })
-    router.Run(":8080")
+	router.GET("/", func(ctx *gin.Context) {
+		// Get user session
+		session := sessions.Default(ctx)
+		// ...
+		ctx.String(200, "Hello Logto!")
+	})
+	router.Run(":8080")
 }
 ```
 
-### Create session storage for Logto to store user authentication information
-
 Create a `session_storage.go` file, define a `SessionStorage` and implement the Logto SDK's `Storage` interfaces:
 
 ```go
@@ -112,28 +108,28 @@ Create a `session_storage.go` file, define a `SessionStorage` and implement the
 package main
 
 import (
-    "github.com/gin-contrib/sessions"
+	"github.com/gin-contrib/sessions"
 )
 
 type SessionStorage struct {
-    session sessions.Session
+	session sessions.Session
 }
 
 func (storage *SessionStorage) GetItem(key string) string {
-    value := storage.session.Get(key)
-    if value == nil {
-        return ""
-    }
-    return value.(string)
+	value := storage.session.Get(key)
+	if value == nil {
+		return ""
+	}
+	return value.(string)
 }
 
 func (storage *SessionStorage) SetItem(key, value string) {
-    storage.session.Set(key, value)
-    storage.session.Save()
+	storage.session.Set(key, value)
+	storage.session.Save()
 }
 ```
 
-Now, in the route handler, you can create a session storage for Logto as follows:
+Now, in the route handler, you can create a session storage for Logto:
 
 ```go
 session := sessions.Default(ctx)
@@ -144,10 +140,9 @@ sessionStorage := &SessionStorage{session: session}
 
 
 
-### Create LogtoConfig
+First, create a Logto config:
 
 
   
@@ -166,7 +161,7 @@ func main() {
   
 
-### Init LogtoClient for each user request +Then, you can create a `LogtoClient` for each user request with the Logto config above: ```go // main.go @@ -201,31 +196,32 @@ func main() {
-### Configure Redirect URI +Before you start implementing the sign-in flow, you need to add a redirect URI in the Admin Console for your application. -Add `http://localhost:8080/sign-in-callback` to the Redirect URI field. -This allows Logto to redirect the user to the `/sign-in-callback` route of your application after signing in. +This allows Logto to redirect the user to the redirect URI after signing in. + +For example, if you add `http://localhost:8080/sign-in-callback` to your Redirect URI, Logto will redirect the user to the `/sign-in-callback` route of your application after signing in. -### Add a route for handling sign-in requests +After the redirect URI is configured, we add a `sign-in` route to handle the sign-in request and also add an sign-in link on the home page: -```go -//main.go +
+  
+    {`//main.go
 func main() {
     // ...
 
     // Add a link to perform a sign-in request on the home page
     router.GET("/", func(ctx *gin.Context) {
         // ...
-        homePage := `

Hello Logto

` + + homePage := \`

Hello Logto

\` + "
" + authState + "
" + // Add link - `` + \`\` ctx.Data(http.StatusOK, "text/html; charset=utf-8", []byte(homePage)) }) @@ -240,7 +236,7 @@ func main() { // The sign-in request is handled by Logto. // The user will be redirected to the Redirect URI on signed in. - signInUri, err := logtoClient.SignIn("http://localhost:8080/sign-in-callback") + signInUri, err := logtoClient.SignIn("${props.redirectUris[0] ?? ''}") if err != nil { ctx.String(http.StatusInternalServerError, err.Error()) return @@ -251,14 +247,21 @@ func main() { }) // ... -} -``` +}`} +
+
-### Add a route for handling sign-in callback requests +Now, when your user visit `http://localhost:8080/sign-in`, the user will be redirected to the Logto sign-in page. + +
+ + When the user signs in successfully on the Logto sign-in page, Logto will redirect the user to the Redirect URI. -Since the Redirect URI is `http://localhost:8080/sign-in-callback`, we add the `/sign-in-callback` route to handle the callback after signing in. +Assuming your Redirect URI is `http://localhost:8080/sign-in-callback`, then we will add the `/sign-in-callback` route to handle the callback after signing in. ```go // main.go @@ -292,33 +295,31 @@ func main() { -### Configure Post Sign-out Redirect URI +Similar to the sign-in flow, when the user signs out, Logto will redirect the user to the post sign-out redirect URI. -Add `http://localhost:8080` to the Post Sign-out Redirect URI filed: +Assuming that you add `http://localhost:8080` to the Post Sign-out Redirect URI filed, Logto will redirect the user to the home page after signing out. - + -This configuration enables the user to return to the home page after signing out. +Now, let's add the `sign-out` route to handle the sign-out request and also add a sign-out link on the home page: -### Add a route for handling signing out requests - -```go -//main.go +
+  
+    {`//main.go
 func main() {
     // ...
 
     // Add a link to perform a sign-out request on the home page
     router.GET("/", func(ctx *gin.Context) {
         // ...
-        homePage := `

Hello Logto

` + + homePage := \`

Hello Logto

\` + "
" + authState + "
" + - `` + + \`\` + // Add link - `` + \`\` ctx.Data(http.StatusOK, "text/html; charset=utf-8", []byte(homePage)) }) @@ -333,7 +334,7 @@ func main() { // The sign-out request is handled by Logto. // The user will be redirected to the Post Sign-out Redirect URI on signed out. - signOutUri, signOutErr := logtoClient.SignOut("http://localhost:8080") + signOutUri, signOutErr := logtoClient.SignOut("${props.postLogoutRedirectUris[0] ?? ''}") if signOutErr != nil { ctx.String(http.StatusOK, signOutErr.Error()) @@ -344,11 +345,25 @@ func main() { }) // ... -} -``` +}`} +
+
After the user makes a signing-out request, Logto will clear all user authentication information in the session.
+ + +Now, you can test your application: + +1. Visit `http://localhost:8080`, you will see "You are not logged in to this website." message on the home page. +2. Click the "Sign In" link, you will be redirected to the Logto sign-in page. +3. Sign in with your Logto account, you will be redirected to the home page and see "You are logged in to this website!" message. +4. Click the "Sign Out" link, and your user authentication information will be cleared, and the home page will display "You are not logged in to this website." message again. + + +