现在我们可以使用dotnetbrowser catch http请求并修改请求数据, 那么我们可以捕获http(s)和ajax响应并修改它(标题和数据体)像fiddler? 现在我们使用fiddler core和dotnetbrowser来处理这个问题!
答案 0 :(得分:0)
不幸的是,当前版本的DotNetBrowser中没有此功能,但我们正在研究将其添加到下一版DotNetBrowser的可能性。
答案 1 :(得分:0)
当前版本的DotNetBrowser 1.16提供了注册自定义协议处理程序的功能,该协议处理程序将用于拦截和处理所有标准URL方案(例如http,https,ftp等)和声明的自定义方案的所有URL请求。在您的应用程序中。它允许您根据需要修改URL响应。
注册协议处理程序:
//Registering the handler for the specified protocol
Browser.Context.ProtocolService.Register("https", new HttpsHandler());
自定义协议处理程序的实现
//The instance of this type will handle the requests of the specified protocol
public class HttpsHandler : IProtocolHandler
{
//This method should provide the response for the specified request
public IUrlResponse Handle(IUrlRequest request)
{
string htmlContent = "Request Url: " + request.Url + "\n";
return new UrlResponse(Encoding.UTF8.GetBytes(htmlContent));
}
}
有关更多信息,您可以使用本文:Custom Protocol Handler