50 Star 280 Fork 97

北京小程科技有限公司 / 微信

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
network.go 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-23 20:22 . 更新刷卡支付的测试样例。
/*
Copyright 2020 XiaochengTech
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package util
import (
"encoding/json"
"io/ioutil"
"net"
"net/http"
"strings"
"time"
)
var client *http.Client
func init() {
client = &http.Client{
Timeout: 5 * time.Second,
Transport: &http.Transport{
IdleConnTimeout: 3 * time.Minute,
TLSHandshakeTimeout: 5 * time.Second,
DialContext: (&net.Dialer{
Timeout: 5 * time.Second,
KeepAlive: 10 * time.Minute,
DualStack: true,
}).DialContext,
},
}
}
// 发送GET请求
func HttpGet(url string) ([]byte, error) {
rsp, err := client.Get(url)
if err != nil {
return nil, err
}
defer rsp.Body.Close()
return ioutil.ReadAll(rsp.Body)
}
// 发送POST请求(JSON)
func HttpPostJson(url string, body interface{}) ([]byte, error) {
bodyStr, err := json.Marshal(body)
if err != nil {
return nil, err
}
return httpPost(url, "application/json", string(bodyStr))
}
// 发送POST请求(XML)
func HttpPostXml(url string, xmlBody string) ([]byte, error) {
return httpPost(url, "application/xml", xmlBody)
}
// 发送通用的POST请求
func httpPost(url string, contentType string, body string) ([]byte, error) {
rsp, err := client.Post(url, contentType, strings.NewReader(body))
if err != nil {
return nil, err
}
defer rsp.Body.Close()
return ioutil.ReadAll(rsp.Body)
}
Go
1
https://gitee.com/xiaochengtech/wechat.git
git@gitee.com:xiaochengtech/wechat.git
xiaochengtech
wechat
微信
3adb7df2544f

搜索帮助

53164aa7 5694891 3bd8fe86 5694891