We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
curl --location --request POST 'https://test.test/pest' \ --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0' \ --data-urlencode 'test=1' \ --data-urlencode 'lang=ru_RU'``` go generated code : ```go req, err := http.NewRequest("POST", "https://test.test/pest", nil) if err != nil { // handle err } req.Header.Set("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0") resp, err := http.DefaultClient.Do(req) if err != nil { // handle err } defer resp.Body.Close()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: