-
-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table INSERT subscriptions fail with Error 401: Not Unauthorized #1107
Comments
I am experiencing the same problem in 2.33.2. Is there a fallback version I can use until this bug is fixed? btw.. I am using @nuxtjs/supabase and therefore const supabase = useSupabaseClient(); to create the subscription. I assume that it is a wrapper around @supabase/supabase-js. |
I am having the same problem. |
Ok, I think I got this to work but I am not sure as to why, maybe someone who is advanced in this topic maybe able to shed some light. I turned off RLS for the table followed by:
as documented in Bring your own database after I did that, I get the payload. UPDATE: I needed both anon and authenticated for my shopping cart so:
|
That makes it work. Thank you. |
This worked for me as well, thank a lot. |
Make sure you have the Authorization header set on the webhook as well, as that can cause a 401 |
The "Missing grants" section in the troubleshooting docs helper me fix this issue: https://supabase.com/partners/integrations/prisma#troubleshooting |
I get an error when I try to set anon for my table, any other workaround? |
I am hitting this problem as well. I am watching for UPDATEs like so:
All of my requests are via an authenticated client, so I only worry about the I am finding that if I do not run If I run the I am not sure why RLS would block the event like that - my only guess would be that the RLS is too restrictive, but this is my RLS policy:
so I am being as insecure as possible with my RLS policy. |
Thanks! That solves the problem. |
Describe the bug
I've subscribed to inserts on a table using the supabase api, when I add a row into that same table on the supabase web interface I receive notice that a change has occurred but not the content of the row that was inserted. I've ensured that the table has been added to the supabase-realtime channel just like the guide. I have tried to disable/enable RLS, giving all permissions to both anon and public roles, and also tried to use the api service key. None of these resolved the 401: unauthorized error.
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Code to subscribe to channel, which I copied from the API tab on the web interface.
and the error:
Row insertion and database actions are done using the supabase web interface.
Expected behavior
A clear and concise description of what you expected to happen.
The payload to contain the row that was just inserted in the payload.new property.
System information
The text was updated successfully, but these errors were encountered: