修改webscort健全
This commit is contained in:
parent
3a5d69737a
commit
d1b230f5ff
|
@ -39,10 +39,14 @@ public class PermissionMiddleware(
|
|||
|
||||
if (string.IsNullOrEmpty(cookieToken))
|
||||
{
|
||||
//如果Cookie中也没有Token,则返回401 Unauthorized
|
||||
logger.LogWarning("Token not found in Authorization header or cookie.");
|
||||
context.Response.StatusCode = StatusCodes.Status401Unauthorized;
|
||||
return;
|
||||
cookieToken = context.Request.Query["access_token"];
|
||||
if (string.IsNullOrEmpty(cookieToken))
|
||||
{
|
||||
//如果Cookie中也没有Token,则返回401 Unauthorized
|
||||
logger.LogWarning("Token not found in Authorization header or cookie.");
|
||||
context.Response.StatusCode = StatusCodes.Status401Unauthorized;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
token = cookieToken;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://192.168.0.13:58826",
|
||||
"applicationUrl": "http://127.0.0.1:58826",
|
||||
"sslPort": 44304
|
||||
}
|
||||
},
|
||||
|
@ -14,7 +14,7 @@
|
|||
"dotnetRunMessages": true,
|
||||
"launchBrowser": false,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://192.168.0.13:5253",
|
||||
"applicationUrl": "http://127.0.0.1:5253",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
|||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "https://192.168.0.13:7233;http://192.168.0.13:5253",
|
||||
"applicationUrl": "https://127.0.0.1:7233;http://127.0.0.1:5253",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
|
|
|
@ -15,7 +15,9 @@ export const useSessionSignalRStore = defineStore('sessionSignalR', {
|
|||
initConnection() {
|
||||
// 构建连接
|
||||
this.connection = new HubConnectionBuilder()
|
||||
.withUrl(`${useRuntimeConfig().public.baseUrl}/SessionHub`)
|
||||
.withUrl(`${useRuntimeConfig().public.baseUrl}/SessionHub`,{
|
||||
accessTokenFactory:()=> `${useCookie('token').value}`
|
||||
})
|
||||
.withAutomaticReconnect()
|
||||
.build();
|
||||
|
||||
|
|
Loading…
Reference in New Issue