GO_INTERVIEW_LIB Telegram 288
💬 Как правильно отправить эти данные в теле HTTP POST запроса?


data := "test data"


Для отправки данных в теле HTTP POST запроса важно знать тип содержимого. Поскольку это сырой текст, мы будем использовать тип содержимого text/plain. Функция http.Post требует io.Reader в качестве тела, а не строки или байтов:


Post(url string, contentType string, body io.Reader) (resp *http.Response, err error)


Интерфейс Reader определен следующим образом:


type Reader interface {
Read(p []byte) (n int, err error)
}


Чтобы соответствовать требованиям, мы преобразуем тело в буфер, который реализует этот интерфейс:


func main() {
data := "test data"

contentType := "text/plain"

body := strings.NewReader(data)
// или
// body := bytes.NewBufferString(data)

resp, err := http.Post("https://example.com", contentType, body)

// ....
}
👍18🤔2



tgoop.com/go_interview_lib/288
Create:
Last Update:

💬 Как правильно отправить эти данные в теле HTTP POST запроса?


data := "test data"


Для отправки данных в теле HTTP POST запроса важно знать тип содержимого. Поскольку это сырой текст, мы будем использовать тип содержимого text/plain. Функция http.Post требует io.Reader в качестве тела, а не строки или байтов:


Post(url string, contentType string, body io.Reader) (resp *http.Response, err error)


Интерфейс Reader определен следующим образом:


type Reader interface {
Read(p []byte) (n int, err error)
}


Чтобы соответствовать требованиям, мы преобразуем тело в буфер, который реализует этот интерфейс:


func main() {
data := "test data"

contentType := "text/plain"

body := strings.NewReader(data)
// или
// body := bytes.NewBufferString(data)

resp, err := http.Post("https://example.com", contentType, body)

// ....
}

BY Библиотека Go для собеса | вопросы с собеседований


Share with your friend now:
tgoop.com/go_interview_lib/288

View MORE
Open in Telegram


Telegram News

Date: |

"Doxxing content is forbidden on Telegram and our moderators routinely remove such content from around the world," said a spokesman for the messaging app, Remi Vaughn. Invite up to 200 users from your contacts to join your channel Step-by-step tutorial on desktop: Healing through screaming therapy In handing down the sentence yesterday, deputy judge Peter Hui Shiu-keung of the district court said that even if Ng did not post the messages, he cannot shirk responsibility as the owner and administrator of such a big group for allowing these messages that incite illegal behaviors to exist.
from us


Telegram Библиотека Go для собеса | вопросы с собеседований
FROM American