You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! You will need to use the WithAfterReceive hook. Essentially, you have access to the entire proxied response before it goes back down to the client. You can edit any part of the headers or content as you wish.
From the README:
.WithAfterReceive((c,hrm)=>{// Alter the content in some way before sending back to client.varnewContent=new StringContent("It's all greek...er, Latin...to me!"); hrm.Content =newContent;return Task.CompletedTask;})
Hi @twitchax
How can I change content a js file and load proxy url
I mean when user open https://example.com and I proxy him to https://example2.com How can I change a js file in https://example2.com
Thanks
The text was updated successfully, but these errors were encountered: