"Resty"의 두 판 사이의 차이

11번째 줄: 11번째 줄:
   client := resty.New()
   client := resty.New()
   resp, _ := client.R().
   resp, _ := client.R().
      EnableTrace().
       Get("https://raw.githubusercontent.com/jmnote/test1/master/utf8test.txt")
       Get("https://raw.githubusercontent.com/jmnote/test1/master/utf8test.txt")
   fmt.Println(resp)
   fmt.Println(resp)

2021년 4월 6일 (화) 13:26 판

1 개요

Resty
  • 간단한 HTTP 및 REST 클라이언트 Go 라이브러리
  • inspired by Ruby rest-client
package main
import "fmt"
import "github.com/go-resty/resty/v2"
func main() {
  client := resty.New()
  resp, _ := client.R().
      Get("https://raw.githubusercontent.com/jmnote/test1/master/utf8test.txt")
  fmt.Println(resp)
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}