Get request, return custom json format
(result interface{}, urlStr string, opts ...Option)
| 368 | |
| 369 | // Get request, return custom json format |
| 370 | func Get(result interface{}, urlStr string, opts ...Option) error { |
| 371 | o := defaultOptions() |
| 372 | o.apply(opts...) |
| 373 | return gDo("GET", result, urlStr, o.params, o.headers, o.timeout) |
| 374 | } |
| 375 | |
| 376 | // Delete request, return custom json format |
| 377 | func Delete(result interface{}, urlStr string, opts ...Option) error { |