opserver / Opserver

Stack Exchange's Monitoring System
https://opserver.github.io/Opserver/
MIT License
4.51k stars 828 forks source link

Error: could not deserialize access token. Expected digit #429

Open JoaoTeixeira-081 opened 9 months ago

JoaoTeixeira-081 commented 9 months ago

Hi there, I am getting this error "Error: could not deserialize access token. Expected digit" in my login page, someone can help me? Above its my opserverSettings.json and i chose docker to build in my cluster (For login i use OIDC from my App Registration in Azure):

"Security": { "provider": "OIDC", // API key used to allow access to the Opserver API "apiKey": "", // subnet(s) of your own networks "internalNetwork": [ { "name": "Internal", "cidr": "x" }, { "name": "Legacy", "cidr": "x" } ], // groups whose members are allowed to view anything "viewEverythingGroups": "Opserver-View", // groups whose members are allowed to admin anything "adminEverythingGroups": "Opserver-Admins;Opserver-MoreAdmins", // scopes passed to the IdP - if not specified this defaults to just "openid" "scopes": ["openid", "email"], // client identifier from your IdP "clientId": "x", // client secret from your IdP "clientSecret": "x", // URL used to retrieve an authorization code "authorizationUrl": "https://login.microsoftonline.com//oauth2/authorize", // URL used to retrieve exchange an authorization code for an access token "accessTokenUrl": "https://login.microsoftonline.com//oauth2/token", // URL used to retrieve information about the logged in user "userInfoUrl": "https://login.microsoftonline.com//oauth2/token", // type of claim used to identify the username of the user "nameClaim": "nameIdentifier", // type of claim used to identify the groups the user is a member of "groupsClaim": "groups" },