8 Star 0 Fork 0

YPT_ARCH / usercenter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
testmain.go 645 Bytes
一键复制 编辑 原始数据 按行查看 历史
a526757124 提交于 2017-04-12 16:10 . add oauth2
package main
import (
"git.oschina.net/YPTArch/usercenter/libs/remote"
"fmt"
"net/http"
"strings"
"io/ioutil"
)
func main() {
a,b,c,d:= remote.HttpPost("httpremote://127.0.0.1:8080/user/register",`{
"UserPwd":"123456",
"UserEmail":"abc3@163.com",
"UserPhone":"131011101"
}`,"application/json")
fmt.Println(a,b,c,d)
fmt.Println("------------------------")
st:= strings.NewReader(`UserPwd=123456&UserEmail=abc%40163.com&UserPhone=1234516515313`)
re,err:= http.Post("httpremote://127.0.0.1:8080/user/register","application/x-www-form-urlencoded",st)
fmt.Println(err)
str,_:= ioutil.ReadAll(re.Body)
fmt.Println(string(str))
}
Go
1
https://gitee.com/YPTArch/usercenter.git
git@gitee.com:YPTArch/usercenter.git
YPTArch
usercenter
usercenter
master

搜索帮助