Open hooraygith opened 4 weeks ago
This is work:
import { fetch } from '@tauri-apps/plugin-http'; const response = await fetch('http://google.com', { method: 'GET', proxy: { all: 'http://127.0.0.1:1095' } }); console.log(response.status);
this is not work:
import { fetch } from '@tauri-apps/plugin-http'; const response = await fetch('http://google.com', { method: 'GET', proxy: { all: 'socks5://127.0.0.1:1097' } }); console.log(response.status);
Got error in network panel (ipc://localhost/plugin:http|fetch):
ipc://localhost/plugin:http|fetch
"builder error"
socks5 is supported by reqwest
reqwest
reqwest::Proxy::http("socks5://localhost:1080")?
This is work:
this is not work:
Got error in network panel (
ipc://localhost/plugin:http|fetch
):"builder error"