get proxy working
This commit is contained in:
22
exp/proxy/main.go
Normal file
22
exp/proxy/main.go
Normal file
@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"log"
|
||||
|
||||
"go.balki.me/tss/proxy"
|
||||
)
|
||||
|
||||
func main() {
|
||||
client, err := proxy.GetClient("socks5://unix/run/tor/socks")
|
||||
res, err := client.Get("https://ip.balki.me")
|
||||
if err != nil {
|
||||
log.Panicln(err)
|
||||
}
|
||||
data, err := io.ReadAll(res.Body)
|
||||
if err != nil {
|
||||
log.Panicln(err)
|
||||
}
|
||||
fmt.Printf("status: %v, data: %s\n", res.Status, data)
|
||||
}
|
Reference in New Issue
Block a user