Skip to content

Retry a http request #67

@ghost

Description

How could i use this to retry http requests.

My http requests are promise based and i like to use async and await.

   public await getResult(sessionId: any, requestId: any) {

        const url = this.config.backendUrl + "/check/report";

        const options = {
            method: "GET",
            uri: url,
            headers: {
                "X-IDCHECK-SESSION-ID": sessionId,
            },
            body: {},
            json: true,
            simple: false,
            resolveWithFullResponse: true,
        };

       return  result = await request(options);
    }

I use the request-promise-native library as my http client. https://github.com/request/request-promise-native

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions