Opserver icon indicating copy to clipboard operation
Opserver copied to clipboard

Error: could not deserialize access token. Expected digit

Open JoaoTeixeira-081 opened this issue 1 year ago • 0 comments
trafficstars

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": "<Global API Key>", // 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" },

JoaoTeixeira-081 avatar Dec 18 '23 15:12 JoaoTeixeira-081