@libfintech/api-gateway-plugin 0.1.20 → 0.1.21
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 +2 -2
- package/package.json +1 -1
package/authe/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const {ResponseError} = require("@libfintech/api-gateway-core/error/response_err
|
|
|
11
11
|
const sessionIdPrefix = appConfig.session.sessionIdPrefix;
|
|
12
12
|
const accountIdPrefix = appConfig.session.accountIdPrefix;
|
|
13
13
|
//不能有大写,客户端传值时,均为小写
|
|
14
|
-
const sessionIdKeyName = appConfig.session.sessionIdKeyName;
|
|
14
|
+
const sessionIdKeyName = appConfig.session.sessionIdKeyName.toLowerCase();
|
|
15
15
|
//会话最长过期时间(一天),单位:秒
|
|
16
16
|
const maxExpirationTime = appConfig.session.maxExpirationTime;
|
|
17
17
|
|
|
@@ -26,7 +26,7 @@ function getCookies(cookie) {
|
|
|
26
26
|
if (cookie) {
|
|
27
27
|
cookie.split(";").forEach(l => {
|
|
28
28
|
let parts = l.split("=");
|
|
29
|
-
cookies[parts[0].trim()] = (parts[1] || "").trim();
|
|
29
|
+
cookies[parts[0].toLowerCase().trim()] = (parts[1] || "").trim();
|
|
30
30
|
});
|
|
31
31
|
}
|
|
32
32
|
|