react-native-ip-sec-vpn
react-native-ip-sec-vpn copied to clipboard
Using proxy instead of VPN address
are there anyways to use Proxy instead of vpn ? i want to use Proxy for my application and i want to be able to change it programmatically , as far as i know i can change the vpn address from inside the application , is anything similar to this available for proxies ?
@DevineDecrypter have you found anything? because i need the same thing i have ip and port. the ip i have is used as a proxy on web. i need to implement in mobile.
ex: connect('192.166.0.1','username','pass')
its giving me unreachable error and i think its because of port which i dont know where to put it.
@DevineDecrypter have you found anything? because i need the same thing i have ip and port. the ip i have is used as a proxy on web. i need to implement in mobile.
ex: connect('192.166.0.1','username','pass')
its giving me unreachable error and i think its because of port which i dont know where to put it.
I ended up using react-native-android-open-settings which you can use to redirect user to the settings page so the user can input the information there. Sadly i couldnt find a way to automate this process.
@DevineDecrypter thanks.