You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am accessing supabase from inside corporate network, which require all traffic to go through a HTTP Proxy. So I have to access Restful API through the Http Proxy. And I don't want to use Tun/Tap interface -> Http Proxy.
Describe the solution you'd like
An additional option to tunnel all supabase Restful API through a HTTP Proxy.
Describe alternatives you've considered
Turn or VPN -> Http Proxy, but it is suboptimal as it will affect all other application in my device.
Additional context
Behind corporate network, strict network.
The text was updated successfully, but these errors were encountered:
Fixessupabase-community#26
Add HTTP Proxy support to ClientOptions.
* **client.go**
- Add `Proxy` field to `ClientOptions` struct to configure HTTP Proxy.
- Update `NewClient` function to use `Proxy` field if provided.
- Update `clientOptions` struct to include `proxy` field.
- Update `NewClient` function to set `proxy` field in `clientOptions`.
* **client_test.go**
- Add test cases to verify HTTP Proxy functionality in `TestFrom`.
- Add test cases to verify HTTP Proxy functionality in `TestRpc`.
- Add test cases to verify HTTP Proxy functionality in `TestStorage`.
- Add test cases to verify HTTP Proxy functionality in `TestFunctions`.
* **README.md**
- Add documentation on how to configure HTTP Proxy in `ClientOptions`.
- Add example code snippet for configuring HTTP Proxy.
---
For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/supabase-community/supabase-go/issues/26?shareId=XXXX-XXXX-XXXX-XXXX).
Feature request
Is your feature request related to a problem? Please describe.
I am accessing supabase from inside corporate network, which require all traffic to go through a HTTP Proxy. So I have to access Restful API through the Http Proxy. And I don't want to use Tun/Tap interface -> Http Proxy.
Describe the solution you'd like
An additional option to tunnel all supabase Restful API through a HTTP Proxy.
Describe alternatives you've considered
Turn or VPN -> Http Proxy, but it is suboptimal as it will affect all other application in my device.
Additional context
Behind corporate network, strict network.
The text was updated successfully, but these errors were encountered: