You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
post, err:= goreq.New[placeholder]("https://jsonplaceholder.typicode.com").IsJson().
Path(fmt.Sprintf("/posts/%d", 1)).Fetch(ctx)
18+ lines
2 lines
POST a JSON object and parse the response
req:=placeholder{
Title: "foo",
Body: "baz",
UserID: 1,
}
res, err:= goreq.New[placeholder]("https://jsonplaceholder.typicode.com").
Path("/posts").BodyJson(req).IsJson().Fetch(ctx)
// net/http equivalent left as an exercise for the reader