DefaultHttpClient class
を使用 node-fetch
する HTTP クライアント。
メソッド
fetch(string, Common |
を使用 |
prepare |
指定された Web リソースに基づいて要求を準備します。 |
process |
HTTP 応答を処理します。 |
send |
実行可能な最小エラー処理と抽象メソッドを実行するロジックを提供します。 |
メソッドの詳細
fetch(string, CommonRequestInit)
を使用 node-fetch
して要求を実行します。
function fetch(input: string, init?: CommonRequestInit): Promise<CommonResponse>
パラメーター
- input
-
string
- init
- CommonRequestInit
戻り値
Promise<CommonResponse>
prepareRequest(WebResourceLike)
指定された Web リソースに基づいて要求を準備します。
function prepareRequest(httpRequest: WebResourceLike): Promise<Partial<RequestInit>>
パラメーター
- httpRequest
- WebResourceLike
戻り値
Promise<Partial<RequestInit>>
processRequest(HttpOperationResponse)
HTTP 応答を処理します。
function processRequest(_operationResponse: HttpOperationResponse): Promise<void>
パラメーター
- _operationResponse
- HttpOperationResponse
戻り値
Promise<void>
sendRequest(WebResourceLike)
実行可能な最小エラー処理と抽象メソッドを実行するロジックを提供します。
function sendRequest(httpRequest: WebResourceLike): Promise<HttpOperationResponse>
パラメーター
- httpRequest
- WebResourceLike
送信 HTTP 要求を表す オブジェクト。
戻り値
Promise<HttpOperationResponse>
受信 HTTP 応答を表す オブジェクト。