1、设置Fiddler

Tools->Options-> Connections

Allow remote computers to connect:

2、nodejs 请求有多种

2.1 用https或者http请求

该种方法貌似需要额外的代理软件监听上图中的8888端口

2.2 用request 等其他第三方模块


request({
method:"GET",
proxy:'http://127.0.0.1:8888',
uri:'https://www.howsmyssl.com/a/check',
"rejectUnauthorized": false,
// agentOptions: {// secureProtocol: 'TLSv1_2_method'
// },
},(err,res,body)=>{
console.log(err)
console.log(res)
console.log();
});

nodeJS 其他请求模块:

https://github.com/visionmedia/superagent

https://github.com/axios/axios

https://github.com/request/request#tlsssl-protocol-

https://stackoverflow.com/questions/31673587/error-unable-to-verify-the-first-certificate-in-nodejs

https://stackoverflow.com/questions/44629256/configure-https-agent-to-allow-only-tls1-2-for-outgoing-requests

最新文章

  1. angular2
  2. JSP之WEB服务器:Apache与Tomcat的区别 ,几种常见的web/应用服务器
  3. 【java基础学习】线程
  4. OneNote 2013 快捷键
  5. 转:JQuery中$.ajax()方法参数详解
  6. JS中Date对象getYear()方法和getFullYear()方法区别
  7. java源程序---可执行文件(.exe)----安装包
  8. 【Convert Sorted List to Binary Search Tree】cpp
  9. iOS获取文件和文件夹大小
  10. Windows 进程通信 之 DDE技术
  11. vim常用命令 vim键盘布局
  12. (转载)细说PHP中strlen和mb_strlen的区别
  13. 如何关闭tomcat的localhost_access_log?
  14. PHP-day01
  15. Mac下VirtualBox共享文件夹设置
  16. 电脑开机后,就会自动运行chkdsk,我想取消chkdsk,怎么取消
  17. hdu 5120(2014北京—求圆相交)
  18. Typescript 查缺补漏
  19. [开发笔记]--把input框设置成font-size:0埋下的坑。
  20. angular2的lazyload初体验

热门文章

  1. C#调用Python脚本的简单示例
  2. dede模块管理一片空白或没有列表内容的解决办法
  3. vue 感觉很好的渲染模式
  4. [UE4]创建多把枪,使用Class,参数的对象类型
  5. [UE4] 虚幻4学习---UE4中的字符串转换
  6. SQL语句嵌套if
  7. Hadoop2.0产生背景
  8. Spring Security编程模型
  9. sql server查看表占用索引空间(小技巧)
  10. Django自带的用户认证