Go 1.15 以上版本的 GRPC 通信,使用自签CA、Server、Client证书和双向认证

2020-11-18
阅读 4 分钟
4.3k
第1步:生成 CA 根证书👍 openssl genrsa -out ca.key 2048 {代码...} 👍 openssl req -new -x509 -days 3650 -key ca.key -out ca.pem {代码...} 第2步:用 openssl 生成 ca 和双方 SAN 证书。准备默认 OpenSSL 配置文件于当前目录linux系统在 : /etc/pki/tls/openssl.cnfMac系统在: /System/Library/OpenSSL/openssl.cnf...

微信小程序端用户授权处理

2019-03-05
阅读 31 分钟
6.8k
taro 1.安装 tarojs npm install -g @tarojs/cli 2.初始化项目 taro init taro-login 3.进入目录 cd taro-login 4.运行编译 npm run dev:weapp 5.修改文件 /src/app.js 代码 {代码...} 6.微信登录需求 如果我们需要用户一进入就取得用户的授权,以便于进行某些记录用户信息的操作,而微信又要求用户去点页面上的某个按钮...

csrf token missing or incorrect

2018-09-19
阅读 2 分钟
4.4k
What to do then?Now to disable csrf check, you can create a custom authentication class CsrfExemptSessionAuthentication which extends from the default SessionAuthentication class. In this authentication class, we will override the enforce_csrf() check which was happening inside the actual Session...

create-react-app 自定义 eslint 配置

2018-06-06
阅读 3 分钟
10.9k
使用eslint和editorconfig规范代码 为什么要用这些: 代码规范有利于团队协作 纯手工规范耗时耗力而且不能保证准确性 能配合编辑器自动提醒错误,提高开发效率 eslint 随着ECMAScript版本一直更新的Js lint工具,插件丰富,并且能够套用规范,规则非常丰富,能够满足大部分团队的需求。 eslint 配合 git 为了最大程度控...

create-react-app+antd+react-css-modules配置

2017-09-18
阅读 7 分钟
13.5k
生成项目后,脚手架为了“优雅”... ...隐藏了所有的webpack相关的配置文件,此时查看myapp文件夹目录,会发现找不到任何webpack配置文件。执行以下命令: