Viperboy
10/27/2022, 7:07 PMLsec
10/28/2022, 12:39 PMdef ConfigureUser(jwt):
d = supabase.auth.set_auth(access_token=jwt)
#data = supabase.table("user_settings").select("*").execute()
data2 = supabase.table("user_settings").insert({"RoleId":"123","VerifyChannelId": "123"}, returning="minimal").execute()
print (data2)
Lsec
10/28/2022, 12:39 PMJ0
11/04/2022, 11:34 AMAdvitSingh5
11/05/2022, 4:33 PMAdvitSingh5
11/05/2022, 4:33 PMRawa
11/08/2022, 1:28 PMRawa
11/08/2022, 1:28 PMRawa
11/10/2022, 4:32 AMRawa
11/10/2022, 4:33 AMRawa
11/10/2022, 4:34 AMJ0
11/10/2022, 10:06 AMRawa
11/10/2022, 10:07 AMRawa
11/10/2022, 10:09 AMJ0
11/10/2022, 10:20 AMuser
11/18/2022, 10:20 AMgrant usage on schema public to postgres, anon, authenticated, service_role;
alter default privileges in schema public grant all on tables to postgres, anon, authenticated, service_role;
alter default privileges in schema public grant all on functions to postgres, anon, authenticated, service_role;
alter default privileges in schema public grant all on sequences to postgres, anon, authenticated, service_role;
alter default privileges for user supabase_admin in schema public grant all
on sequences to postgres, anon, authenticated, service_role;
alter default privileges for user supabase_admin in schema public grant all
on tables to postgres, anon, authenticated, service_role;
alter default privileges for user supabase_admin in schema public grant all
on functions to postgres, anon, authenticated, service_role;
But no luckuser
11/18/2022, 10:21 AMgds
11/27/2022, 10:18 AMgds
11/27/2022, 12:58 PMtevfik
11/30/2022, 11:21 AMpostgresql://postgres:XXXX@YYY.supabase.co:5432
. However, for a while, I am not able to do it, I am getting the following error:
port 5432 failed: Connection refused
Is the server running on that host and accepting TCP/IP connections?
I thought maybe supabase is introduced recently SSL Certificates, but it also did not work. Does anyone have previous experience with this issue?mansueli
11/30/2022, 12:54 PM𝓬𝓱𝓾𝓫𝓫𝔂𝓕𝓻𝓮𝓪𝓴
11/30/2022, 2:47 PMjackjackk
12/03/2022, 1:46 PMCzarSalad
12/05/2022, 2:20 AMexport SUPABASE_URL=<<the value under config > URL>>
export SUPABASE_KEY=<<the value present in Project API keys > anon public>>
export SUPABASE_SECRET_KEY=<<the value present in Project API keys > service_role secret>>
import json
from dotenv import load_dotenv
from supabase import create_client, Client
from faker import Faker
import faker_commerce
mansueli
12/05/2022, 12:54 PMJake378
12/07/2022, 5:32 PMJake378
12/07/2022, 6:10 PMzegoverno
12/07/2022, 7:30 PMZacBytes
12/08/2022, 5:11 AMZacBytes
12/08/2022, 5:11 AM