https://supabase.com/ logo
Join Discord
Powered by
# off-topic
  • o

    Olyno

    09/10/2021, 11:33 PM
    Gonna be better to talk, and avoid to flood :p
  • b

    Brandon Braner

    09/11/2021, 12:55 AM
    Hey everyone I have a question about using supabase as a auth provider for an api I log the user in and get the access token, but I am not sure how to use that access token to make requests to supabase again. I try to create the client using the access_token as the key but no dice
  • b

    Brandon Braner

    09/11/2021, 12:57 AM
    Using the python client
  • b

    Brandon Braner

    09/11/2021, 1:00 AM
    of course I just needed to ask lol, figured it out by using supabase.auth.api.get_user(jwt)
  • p

    Peanut

    09/11/2021, 1:38 AM
    Is supabase slow/down or something? All of my SQL queries are (suddenly) slow as heck
  • p

    Peanut

    09/11/2021, 1:48 AM
    Back to normal speed now. Weird
  • d

    dasbardgoet

    09/11/2021, 4:35 AM
    yeah my queries are randomly slowing down
  • t

    tymur999

    09/11/2021, 4:54 AM
    does Supabase support querying views?
    s
    • 2
    • 2
  • u

    user

    09/11/2021, 7:02 AM
    Hi, just wondering how supabase is handling input validations?
  • p

    Poypoypoy

    09/11/2021, 7:47 AM
    anyone wants to continue or contribute my supabase and notus template project
  • b

    baptisteArno

    09/11/2021, 9:49 AM
    Damn guys I loved implementing RLS on my new Database... This is miles away from Firebase rules 🤯
  • h

    HorseShoe

    09/11/2021, 1:18 PM
    ikr..
  • l

    Lalit

    09/11/2021, 1:44 PM
    Hello everyone, is there any .new domain such as supa.new for creating a new Supabase project 👀 ??
  • a

    avi

    09/11/2021, 5:11 PM
    hey everyone
  • a

    avi

    09/11/2021, 5:12 PM
    are there any good nextjs + supabase tutorials out there?
  • m

    Matt Hudson

    09/11/2021, 5:53 PM
    I'm curious about user authentication. Would it be possible to connect my Keycloak server?
  • m

    Matt Hudson

    09/11/2021, 5:55 PM
    Particularly, would it be an ordinary use of Supabase to host just my JWT-secured API and database with Supabase?
  • o

    Olyno

    09/12/2021, 12:11 AM
    Good suggestion, what about putting in #867348150741237790 😉
  • l

    Lalit

    09/12/2021, 3:38 AM
    done!
  • o

    Olyno

    09/12/2021, 3:39 AM
    And also to answer to your question: not yet, but i think it could be awesome if we have this feature :p
  • x

    Xyo

    09/12/2021, 9:59 AM
    localStorage permissions
    • 1
    • 7
  • u

    user

    09/12/2021, 11:41 AM
    Hello! How's supabase handling real-time notifications?
  • t

    Thomas B

    09/12/2021, 12:11 PM
    https://github.com/supabase/realtime
  • h

    Hal

    09/12/2021, 1:49 PM
    Hi there, I got an error saying I need to reload the schema cache. I tried to run
    NOTIFY pgrst, 'reload schema';
    as [this answer](https://github.com/supabase/supabase/discussions/2935#discussioncomment-1230889) said, but it still doesn't work. Should I wait for a period? if yes, how long?
  • h

    Hal

    09/12/2021, 11:07 PM
    What does
    relation "auth.users" does not exist
    mean? I want to create a users table in SQL editor but got this.
    • 1
    • 1
  • b

    Brock

    09/12/2021, 11:20 PM
    Does anyone else seem to get logged out/have their session expire every minute or so? I keep getting an unauthorized message when working with my tables and having to click log in 5 or so times every few minutes to get it to work
  • h

    Hal

    09/12/2021, 11:21 PM
    Yes, every time after I run some SQL code 😭
  • b

    Brock

    09/12/2021, 11:23 PM
    Super annoying. I wonder if there are some issues going on behind the scenes
  • h

    Hal

    09/12/2021, 11:24 PM
    Seems like I can't create a relation with
    auth.users
    , should create with
    public.users
    .
  • b

    Brock

    09/12/2021, 11:25 PM
    you should be able to use something like this to set up a public users table based on the auth.users table
    Copy code
    create table public.profiles (
      id uuid references auth.users not null,
      first_name text,
      last_name text,
    
      primary key (id)
    );
    
    alter table public.profiles enable row level security;
1...101102103...392Latest