[Request Feature] I would like to have an option in the SDK to encrypt the query string and responsed data #34140
Unanswered
tokyoshare
asked this question in
Feature Requests
Replies: 1 comment
|
Just FYI the data and headers are all encrypted in transit to and from the browser and Supabase with https. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Currently, I am using ReactJS and integrating Supabase on the client side, which is very convenient and significantly reduces the time I have to write or configure backend APIs. (I love it so much)
However, when looking at the network tab in the browser's Inspector, I see that the queries are in the form of
https://domain.com?select=human_readable_content.I wonder if we could add into SDK an option during initialization to automatically encrypt the query, for example,
https://domain.com?encrypted_content? And then on the server side, it decrypts that query to return the encrypted data, which the SDK would then decrypt to output as JSON in the client code.This would help fully secure the query from malicious individuals attempting to steal data.
All reactions