Skip to main content

Quick integration

Create an application

  1. To log in, visit the website and click on the "login" button located in the top right corner.
0account login page image
  1. Download 0account app if you haven’t already.

  2. Authenticate on the website using the app.

tip

In case you want to authenticate using mobile app, you can scan the QR code.

  1. Create a new app:
0account new app page image
  1. Copy the app ID to be used for frontend integration.
0account copy app id page image
  1. Copy the app secret to be used for backend integration.
0account copy app secret page image

Now we can move on and implement frontend related part.

Frontend

npm install @oila/0account

Import in the library SDK:

<zero-account app-id="{YOUR_APP_ID}" theme-preset='dark' />
tip

For a complete list of customization options, please visit the customizations page.

Handle authentication

To complete the authentication process, you need to listen for the "0account-authenticated" event.

document.addEventListener("0account-authenticated", (event) => {
// data contains any data you have returned from the backend
const data = event.detail;
// your business logic here. This is a good place to redirect the user.
});

If you want to handle remote logout from 0account app, handle the "0account-logout" event.

document.addEventListener("0account-logout", (_) => {
// implement your logout logic here.
});

Frontend is done and let's get to the fun part.

Backend

go get "github.com/oila-gmbh/0account-go"

Connect 0account middleware

package main

import (
"encoding/json"
"net/http"
"os"

"github.com/go-redis/redis/v9"
zero "github.com/oila-gmbh/0account-go"
)

func main() {
var redisClient = redis.NewClient(&redis.Options{})
// This is the secret from 0account app, we created earlier
zero.SetAppSecret(os.Getenv("ZERO_APP_SECRET"))
// If engine is not provided, an in-memory engine will be used.
// For production, it is recommended to provide an engine:
// for this example we will use redis but any other database could be used
zero.SetEngineSetterAndGetter(
func(ctx context.Context, k string, v []byte) error {
// For the best results the timeout should match the timeout
// set in frontend (updateInterval option, default: 3 minutes)
return redisClient.Set(ctx, k, v, 3*time.Minute)
},
func(ctx context.Context, k string) ([]byte, error) {
return redisClient.Get(ctx, k)
},
)

// The route URL is the callback URL you have set when you created 0account app.
http.Handle("/zero/auth", func(w http.ResponseWriter, r *http.Request) {
// We can get any data we defined in the requested data section in the admin panel
// NOTE: all json data should be camel-cased, e.g. Last Name should be lastName
type User struct {
FirstName string `json:"firstName"`
}
user, metadata, err := zero.Auth[User](context.Background(), r.Header, r.Body))
if err != nil {
http.Error(w, "User is not authorized", http.StatusUnauthorized)
return
}
// If the request comes from 0account webhook, we must return success,
// so it knows that the library saved the data
if metadata.IsWebhookRequest() {
w.WriteHeader(http.StatusOK)
return
}

// any data returned here would be sent to 0account-authenticated event on front-end e.g.:
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
userData := map[string]string{"firstName": user.FirstName}
json.NewEncoder(w).Encode(userData)
})
}