@libfintech/api-gateway-plugin 0.1.19 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/authe/index.js +3 -0
- package/package.json +1 -1
package/authe/index.js
CHANGED
|
@@ -238,10 +238,13 @@ async function main(pipeline, configs) {
|
|
|
238
238
|
req.headers = {};
|
|
239
239
|
|
|
240
240
|
// 防止人为注入
|
|
241
|
+
delete req.headers["X-Session"];
|
|
241
242
|
delete req.headers["X-Account-Id"];
|
|
242
243
|
delete req.headers["X-Wechat-Open-Id"];
|
|
243
244
|
|
|
244
245
|
if (session) {
|
|
246
|
+
//注入X-Session
|
|
247
|
+
req.headers["X-Session"] = Buffer.from(JSON.stringify(session)).toString('base64');
|
|
245
248
|
//注入X-Account-Id
|
|
246
249
|
req.headers["X-Account-Id"] = session["accountId"];
|
|
247
250
|
|