billfeller.github.io icon indicating copy to clipboard operation
billfeller.github.io copied to clipboard

Fiddler Willow 配置自定义请求头

Open billfeller opened this issue 7 years ago • 0 comments

  1. 使用Fiddler Willow -> Add Exten :

image

  1. 使用FiddlerScript 配置自定义请求头:
    static function OnBeforeRequest(oSession: Session) {
        if (oSession.HostnameIs("xxxx.domain.com")) {	
            oSession.oRequest["Accept"] = "image/webp,image/wxpic,image/sharpp,image/*,*/*;q=0.8";
        }

推荐:http://shalles.github.io/blog/tools/fiddler/translate/0000/04/11/Translate-fiddler-script-a

billfeller avatar Jun 02 '17 09:06 billfeller