go get,post 요청 봉인

패키지 요청 받기
//Get http get method
func Get(url string, params map[string]string, headers map[string]string) (*http.Response, error) {
	//new request
	req, err := http.NewRequest("GET", url, nil)
	if err != nil {
		log.Println(err)
		return nil, errors.New("new request is fail ")
	}
	//add params
	q := req.URL.Query()
	if params != nil {
		for key, val := range params {
			q.Add(key, val)
		}
		req.URL.RawQuery = q.Encode()
	}
	//add headers
	if headers != nil {
		for key, val := range headers {
			req.Header.Add(key, val)
		}
	}
	//http client
	client := &http.Client{}
	log.Printf("Go GET URL : %s 
", req.URL.String()) return client.Do(req) }

 
포스트 요청 봉인
//Post http post method
func Post(url string, body map[string]string, params map[string]string, headers map[string]string) (*http.Response, error) {
	//add post body
	var bodyJson []byte
	var req *http.Request
	if body != nil {
		var err error
		bodyJson, err = json.Marshal(body)
		if err != nil {
			log.Println(err)
			return nil, errors.New("http post body to json failed")
		}
	}
	req, err := http.NewRequest("POST", url, bytes.NewBuffer(bodyJson))
	if err != nil {
		log.Println(err)
		return nil, errors.New("new request is fail: %v 
") } req.Header.Set("Content-type", "application/json") //add params q := req.URL.Query() if params != nil { for key, val := range params { q.Add(key, val) } req.URL.RawQuery = q.Encode() } //add headers if headers != nil { for key, val := range headers { req.Header.Add(key, val) } } //http client client := &http.Client{} log.Printf("Go POST URL : %s
", req.URL.String()) return client.Do(req) }

좋은 웹페이지 즐겨찾기