英文:
How to connect supabase with my golang for jwt token verification API from supabase?
问题
这方面没有专门的视频或文章。
我真的需要这个解决方案。
英文:
There is no any dedicated video or article on this.
I really need this solution.
答案1
得分: 1
import (
"github.com/nedpals/supabase-go"
)
func verifyTokenSupabase(token string) (*supabase.User, error) {
supabase := supabase.CreateClient(supabaseUrl,supabaseAnonKey)
ctx := context.Background()
ctx, _ = context.WithTimeout(ctx, 60000*time.Millisecond)
fmt.Println(ctx)
user, err := supabase.Auth.User(ctx, token)
if err != nil {
return user, err
}
return user, nil
}
import (
"github.com/nedpals/supabase-go"
)
func verifyTokenSupabase(token string) (*supabase.User, error) {
supabase := supabase.CreateClient(supabaseUrl,supabaseAnonKey)
ctx := context.Background()
ctx, _ = context.WithTimeout(ctx, 60000*time.Millisecond)
fmt.Println(ctx)
user, err := supabase.Auth.User(ctx, token)
if err != nil {
return user, err
}
return user, nil
}
英文:
import (
"github.com/nedpals/supabase-go"
)
func verifyTokenSupabase(token string) (*supabase.User, error) {
supabase := supabase.CreateClient(supabaseUrl,supabaseAnonKey)
ctx := context.Background()
ctx, _ = context.WithTimeout(ctx, 60000*time.Millisecond)
fmt.Println(ctx)
user, err := supabase.Auth.User(ctx, token)
if err != nil {
return user, err
}
return user, nil
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论