Is there any danger in refreshing JWT tokens directly without a refresh token?

So I wrote the following logic for my web app:
When a user interacts with the website it initiates a Backend call. In the backend every endpoint has multiple middlewares, of which there is a JWT verification step, if it succeeds it goes to… Continue reading Is there any danger in refreshing JWT tokens directly without a refresh token?

Azure AD has an "issuer" attribute on JWK keys in the JWK Set but Google ID does not, what is its purpose?

The Google Identity openid discovery url https://accounts.google.com/.well-known/openid-configuration, has a .jwks_uri of https://www.googleapis.com/oauth2/v3/certs. If we look at the first key in that JWK Set
curl -s https://www.googleapi… Continue reading Azure AD has an "issuer" attribute on JWK keys in the JWK Set but Google ID does not, what is its purpose?

How to enable multiple logins from the same user at the same time on different devices? [closed]

I am building an application and I want users to be able to log in from multiple devices without logging out of other devices.
How should I implement this functionality?
I am using Jwt token for authentication and MySQL database for storin… Continue reading How to enable multiple logins from the same user at the same time on different devices? [closed]