Is there a way to intercept an HTTP request on Windows Phone 8?
I have a PhoneGap application that I would like to intercept some of the HTTP requests that WebView creates and returns my own responses. I intercept calls that request assets on a web server and return assets that can be created locally.
On Android, I can use shouldInterceptrequest
In iOS, I can use NSURLProtocol
From what I can say on Windows Phone 8, I can register my own scheme to run my application, but I cannot intercept HTTP requests. Is there something I'm missing?
source share