-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxhttp_test.go
133 lines (119 loc) · 4.84 KB
/
xhttp_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package GoLib
import "testing"
func TestGetClient(t *testing.T) {
header := map[string]string{
//"accept": "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript, */*; q=0.01",
//"accept-encoding": "gzip, deflate, br",
"accept-language": "zh-CN,zh;q=0.9",
"Referer": "https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
//"x-requested-with": "XMLHttpRequest",
}
http := Http{Proxy: "http://127.0.0.1:8080", Header: header, TimeOut: 3}
resp := http.GET("https://www.baidu.com")
println("title:" + resp.Title)
println(resp.BaseResponse.StatusCode)
//println(string(resp.ResponseBody))
/*
GET /8899.php HTTP/1.1
Host: 127.0.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
Accept-Language: zh-CN,zh;q=0.9
Content-Type: application/x- www-form-urlencoded
Referer: https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Connection: close
*/
http.GET("http://127.0.0.1/8899.php")
/*
Content-Length: 100
Date: Sat, 02 Apr 2022 02:15:30 GMT
Server: Apache/2.4.39 (Win32) OpenSSL/1.0.2r mod_fcgid/2.3.9a mod_log_rotate/1.02
X-Powered-By: PHP/7.3.4
Content-Type: text/html; charset=UTF-8
*/
/*
POST /8899.php HTTP/1.1
Host: 127.0.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
Accept-Language: zh-CN,zh;q=0.9
Content-Type: application/x- www-form-urlencoded
Referer: https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Content-Length: 9
Connection: close
A=1&N2=12
*/
resp2 := http.POST("http://127.0.0.1/8899.php", "A=1&N2=12")
http.getHeaderKeys(resp2.ResponseHeader)
println(resp2.ResponsePackage)
println(resp2.RequestPackage)
/*
POST /8899.php HTTP/1.1
Host: 127.0.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
Accept-Language: zh-CN,zh;q=0.9
Content-Type: application/json
Referer: https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Content-Length: 9
Connection: close
{"a":"1"}
*/
http.JsonRequest("http://127.0.0.1/8899.php", "{\"a\":\"1\"}")
/*
POST /8899.php HTTP/1.1
Host: 127.0.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
Accept-Language: zh-CN,zh;q=0.9
Content-Type: text/xml
Referer: https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Content-Length: 159
Connection: close
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
*/
http.XMLRequest("http://127.0.0.1/8899.php", "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<note>\n<to>George</to>\n<from>John</from>\n<heading>Reminder</heading>\n<body>Don't forget the meeting!</body>\n</note>")
/*
POST /8899.php HTTP/1.1
Host: 127.0.0.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
Content-Length: 349
Accept-Language: zh-CN,zh;q=0.9
Content-Type: multipart/form-data; boundary=67c9c129a6b68b717510fdff951a65ac97a9134f383bf679eb91512d77de
Referer: https://item-paimai.taobao.com/pmp_item/609160317276.htm?s=pmp_detail&spm=a213x.7340941.2001.61.1aec2cb6RKlKoy
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Connection: close
--67c9c129a6b68b717510fdff951a65ac97a9134f383bf679eb91512d77de
Content-Disposition: form-data; name="param"
1
--67c9c129a6b68b717510fdff951a65ac97a9134f383bf679eb91512d77de
Content-Disposition: form-data; name="file"; filename="1.png"
Content-Type: image/png
I'am content
--67c9c129a6b68b717510fdff951a65ac97a9134f383bf679eb91512d77de--
*/
//文件上传
http.FileUpload("file", "1.png", "http://127.0.0.1/8899.php", "image/png", []byte("I'am content"), map[string]string{"param": "1"})
//判断是否为静态文件
//isFile, _ := http.ISFile("http://127.0.0.1/1.txt")
//if isFile {
// print("isFile")
// if http.DownloadFile("http://127.0.0.1/1.txt", "1.txt") {
// println("download success")
// }
//}
}