Documentation ¶
Overview ¶
* Copyright 1999-2020 Alibaba Group Holding Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
Index ¶
- func FakeHttpResponse(status int, body string) (resp *http.Response)
- type HttpAgent
- func (agent *HttpAgent) Delete(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error)
- func (agent *HttpAgent) Get(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error)
- func (agent *HttpAgent) Post(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error)
- func (agent *HttpAgent) Put(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error)
- func (agent *HttpAgent) Request(method string, path string, header http.Header, timeoutMs uint64, ...) (response *http.Response, err error)
- func (agent *HttpAgent) RequestOnlyResult(method string, path string, header http.Header, timeoutMs uint64, ...) string
- type IHttpAgent
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type HttpAgent ¶
type HttpAgent struct { }
type IHttpAgent ¶
type IHttpAgent interface { Get(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error) Post(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error) Delete(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error) Put(path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error) RequestOnlyResult(method string, path string, header http.Header, timeoutMs uint64, params map[string]string) string Request(method string, path string, header http.Header, timeoutMs uint64, params map[string]string) (response *http.Response, err error) }
Click to show internal directories.
Click to hide internal directories.