-
Notifications
You must be signed in to change notification settings - Fork 85
Open
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
Labels
No labels