Hi!
I've recently started using supabase after having used my own infrastructure. I've run into authentication issue trying to upload data to my table.
No matter what API key I use, I get a 403 when I try uploading with the python client.
HTTP Request: POST https://<project>.supabase.co/rest/v1/vendor "HTTP/1.1 403 Forbidden"
That's on the https url obviously using the supabase python client.
This happens no matter what key I use. How do I connect?
I could fix my issue using sqlalchemy instead, so I pulled it off in the end but I'd like to know how the supabase client works for next time, because sqlalchemy isn't as neat a solution, I don't like writing SQL.