-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I create a request interceptor/middleware? #1492
Comments
Here is an example of one, there are more in the parent directory.
Let us know if you have any additional comments or questions. |
Any idea why it does not include this header in actual request but it shows in console? @baywet public async execute(
url: string,
reqInit: RequestInit,
reqOptions?: Record<string, RequestOption>
): Promise<FetchResponse> {
return this.executeInternal(url, reqInit as FetchRequestInit);
}
private async executeInternal(
url: string,
reqInit: FetchRequestInit
): Promise<Response> {
setRequestHeader(reqInit as FetchRequestInit, 'Test', `Test`);
console.log(reqInit as RequestInit);
const res = await this.next?.execute(url, reqInit as RequestInit);
if (!res) {
throw new Error('Response is undefined');
}
return res;
} |
Can you check what versions of the packages are actually installed and upgrade to the latest please? There used to be a a similar bug we fixed in #1358 |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
How do I create a request interceptor/middleware?
The text was updated successfully, but these errors were encountered: