https://supabase.com/ logo
Join Discord
Powered by
# help
  • m

    Misha

    06/02/2022, 9:19 AM
    I'm getting an Unauthorized error when trying to create a new organization (i have 0). This is preventing me from being able to use the service sadly as I'm not able to create a project either. Is there some kind of problem atm?
    n
    s
    • 3
    • 7
  • s

    Sneha Singh

    06/02/2022, 9:51 AM
    Hi, I'm getting exact same issue. On inspecting the page it seems like GET call to https://api.supabase.io/platform/profile/subscriptions and POST call to https://api.supabase.io/platform/telemetry/identify are failing with 401 Unauthorized error
    n
    • 2
    • 2
  • p

    pixelhusten

    06/02/2022, 10:20 AM
    I got the same error when I created new queries. The problem is gone now but I can't access the new queries via
    rpc()
    because they are not found.
    n
    • 2
    • 1
  • v

    Voko2255

    06/02/2022, 11:41 AM
    what that error means , when i search about its about connection string but im not connecting to db im using gui
    n
    m
    • 3
    • 4
  • g

    Gabriel_

    06/02/2022, 2:36 PM
    How do you enable email/password authentication when self-hosting Supabase? I'm receiving the following error when using
    supabase.auth.signIn
    with my current instance:
    POST http://localhost:3100/auth/v1/token?grant_type=password net::ERR_FAILED
    n
    s
    • 3
    • 11
  • f

    ferpintado

    06/02/2022, 4:02 PM
    I am trying to resend an email confirmation email to users. For what I've read the only way is to generate the link in the client and send it via our own email system. However, when I try to do
    await supabaseClient.auth.api.generateLink('signup',userEmail);
    I receive a 401 with
    msg: "User not allowed"
    . What's the proper way to resend an email confirmation?
    n
    g
    • 3
    • 6
  • m

    Michie

    06/02/2022, 4:44 PM
    Is there an issue with the Forgotten Password Email? I'm getting - "Missing or invalid credentials." Error when user can create account and login in? Thanks
    n
    g
    • 3
    • 34
  • s

    Sobhan

    06/02/2022, 6:52 PM
    Hey all! To enable real time messaging for my expo/react native app, I'm using a Supabase subscription. When the app loads, a useEffect gets triggered, and the subscription starts up with status "SUBSCRIBED". Immediately after, however, I'll many times see "CLOSED" and then sometimes "RETRYING_AFTER_TIMEOUT". In Supabase I've enabled realtime on my messages table, and I can see in my dashboard that realtime requests are being made. Here's the code for setting up the subscription & listening to changes to the subscription's status: useEffect(() => { const subscription = supabase .from("messages") .on("INSERT", (payload) => { console.log("Message send received!"); setMessages([...messages, payload.new]); }) .subscribe((status) => console.log("subscribe", status)); return () => { supabase.removeSubscription(subscription); }; }, [messages]); Does anyone know why the subscription is immediately closing - and what I can do to prevent that from happening?
    n
    g
    • 3
    • 15
  • b

    bsnow

    06/02/2022, 7:30 PM
    I have a supabase edge function that works just fine with postman, but when I try and fetch() in my react app, I keep getting CORS. Anyone experience this? Tried setting access origin on the server edge function to ā€œ*ā€ as well as local host, but still no luck.
    n
    g
    • 3
    • 20
  • s

    snowshift

    06/03/2022, 1:44 AM
    Should I report this, submit a PR, or Sentry or error tracker pick it up?
    n
    g
    • 3
    • 7
  • n

    Needle

    06/03/2022, 8:53 AM
    Hello @arc_theory! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
  • a

    abraxas

    06/03/2022, 11:45 AM
    I'm sorry to ask again but is there anyone I can talk to about this Safari + OAuth issue. I have tried to debug it for a week now. Is anyone available to talk for 10 minutes about it? https://github.com/supabase/supabase/issues/7088
    n
    b
    • 3
    • 4
  • b

    Bloxs

    06/03/2022, 7:14 PM
    Is there a way to fetch any custom properties in the js client under the auth > user table? As I'd like to be able to set a value in that table and access it without having to create a new table + entry
    n
    o
    • 3
    • 5
  • z

    zavbala

    06/03/2022, 8:37 PM
    Anyone is consuming rest endpoint with rust? Especially with reqwest crate, I can't retrieve the data šŸ¤”
    n
    g
    • 3
    • 8
  • o

    ottohatt

    06/03/2022, 9:07 PM
    Can you you implement row level security rules (i.e. checking
    user_id
    matches) without using Supabase's login system?
    n
    g
    • 3
    • 12
  • e

    Epailes

    06/04/2022, 12:25 AM
    How can I invalidate an access token?
    await supabase.auth.signOut()
    doesn't invalidate the token itself.
    n
    g
    j
    • 4
    • 7
  • b

    Borisdm

    06/04/2022, 1:34 AM
    Anyway to disable accounts in supabase?
    n
    g
    • 3
    • 4
  • d

    da newb

    06/04/2022, 3:16 AM
    Is it possible to do resource embedding on filters when running a delete operation? I want to delete an entry from a table based on embedded columns from a foreign table
    n
    s
    • 3
    • 7
  • s

    snowshift

    06/04/2022, 4:48 AM
    What is the JS syntax for stacking many eq for realtime subscriptions
    Copy code
    messageSubscription = await supabase
      .from(`messages:community_id=eq.${community.id}:room_id=eq.${room.id}`)
      .on('INSERT', payload => {})
      .subscribe();
    Here's what I have that doesn't work
    n
    g
    • 3
    • 5
  • d

    delt

    06/04/2022, 9:29 AM
    Hi
    n
    • 2
    • 3
  • i

    ian_

    06/04/2022, 4:47 PM
    hey - really in need of help. how do I access auth.identities from supabasejs? i'm using the service role.
    n
    g
    • 3
    • 13
  • c

    CandymanDev

    06/04/2022, 5:57 PM
    Hello, I'm running into a 400 error when trying to empty a storage bucket. Request:
    POST
    to
    https://xxxxxz.supabase.co/storage/v1/bucket/<bucket_name>/empty
    Response:
    Copy code
    json
    {
        "statusCode": "400",
        "error": "Bad Request",
        "message": "\"statusCode\" is required!"
    }
    I'm not sure what the issue is. I just updated the
    @supabase/supabase-js
    package from
    1.31.1
    to
    1.35.3
    to see if that would help. But it didn't 😢 Any idea what's going wrong here?
    n
    g
    • 3
    • 9
  • s

    sbr

    06/04/2022, 8:15 PM
    Hi, the image urls provided in the email templates are broken for my app. The images were rendered correctly in emails sent two days ago but for the ones sent yesterday and today they are broken. Can anyone from the Supabase team take a look?
    n
    g
    • 3
    • 34
  • d

    devthines

    06/04/2022, 9:19 PM
    Hi, i'm trying out supabase with angular, but i got stuck with errorless issue that fetAll data for a specific table does not return anything
    n
    g
    • 3
    • 9
  • s

    skyclo

    06/04/2022, 9:34 PM
    šŸ‘‹ Hey. I have a question about Supabase Buckets. Is there a way that I can sync a folder/object under a bucket via git? If not, would a GitHub Action triggered by pushes using the Supabase CLI be a viable option? Thanks for all the help in advance.
    n
    o
    • 3
    • 9
  • b

    Borisdm

    06/05/2022, 2:56 AM
    So I am trying to insert a bool value into profile when user signs up, but supabase store it as a string, tried ::boolean. It doesn't seems to work
    n
    • 2
    • 2
  • s

    shashankdaima

    06/05/2022, 11:12 AM
    is it possible to use supabase for Native Android Project?
    n
    o
    • 3
    • 7
  • c

    coinmaster47

    06/05/2022, 12:23 PM
    Hi, is it possible to use http_get in a trigger function? I can't get it working. thanks
    n
    s
    • 3
    • 13
  • h

    hirefrank

    06/05/2022, 1:14 PM
    šŸ‘‹ I'm very excited about using supabase! I'm trying to migrate my db (sqlite3) to supabase using pgloader. I'm admittedly new to pgloader -- and I keep getting this error. I have no problems connecting directly using psql. Any tips or pointers? šŸ™
    docker exec -it loader pgloader dev.sqlite3 postgres://postgres:PASSWORD@db.xyz.supabase.co:5432/postgres
    āž”ļø > 2022-06-05T13:12:56.037000Z LOG pgloader version "3.6.3~devel" > 2022-06-05T13:12:56.045000Z LOG Data errors in '/tmp/pgloader/' > KABOOM! > FATAL error: Failed to connect to pgsql at "db.xyz.supabase.co" (port 5432) as user "postgres": 10 fell through ECASE expression. Wanted one of (0 2 3 4 5 6 7 8). > An unhandled error condition has been signalled: > Failed to connect to pgsql at "db.xyz.supabase.co" (port 5432) as user "postgres": 10 fell through ECASE expression. Wanted one of (0 2 3 4 5 6 7 8).
    n
    g
    • 3
    • 4
  • f

    FjordWarden

    06/05/2022, 2:54 PM
    Hi, how can I pause my own project, I am not using it at the moment but might in the future
    n
    g
    • 3
    • 6
1...280281282...316Latest