Supabase API (4.x)

An asset by fenix
The page banner background of a mountain and forest
Supabase API (4.x) hero image

Quick Information

0 ratings
Supabase API (4.x) icon image
fenix
Supabase API (4.x)

API Library to interact with your Supabase backend project.

Supported Engine Version
4.0
Version String
4.0.2
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

👉 3.x

Godot Engine - Supabase (4.x)

A lightweight addon which integrates Supabase APIs for Godot Engine out of the box.

  • Authentication (/auth)
  • Database (/database)
  • Realtime (/realtime)
  • Storage (/storage)

UI Library

A drag&drop UI Library is available at supabase-ui.

examples and demos

A collection of examples and live demos is available at fenix-hub/godot-engine.supabase-examples, both with source code and exported binaries.

how to use

A wiki is available here.
Even though it is still not complete, Classes and APIs references are always listed and updated.

code snippet

Multiple approaches!

Asynchronous

func _ready():
    Supabase.auth.signed_in.connect(_on_signed_in)
    Supabase.auth.sign_in(
        "[email protected]",
        "userpwd"
    )

func _on_signed_in(user: SupabaseUser) -> void:
    print(user)

Synchronous

func _ready():
    var auth_task: AuthTask = await Supabase.auth.sign_in(
        "[email protected]",
        "userpwd"
    )
    print(auth_task.user)

API Library to interact with your Supabase backend project.

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
Supabase API (4.x) icon image
fenix
Supabase API (4.x)

API Library to interact with your Supabase backend project.

Supported Engine Version
4.0
Version String
4.0.2
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers