Extending Strapi Data from Providers

I think you can do this. On the last step (#7 from your documentation link), when you get redirected back to /connect//redirect, the front-end code gets the JWT, and can optionally save other data (in this case, to localStorage). An example of the front-end handling this is here:

Notice that it saves a couple items:

        localStorage.setItem('jwt', res.jwt);
        localStorage.setItem('username', res.user.username);

I think there’s more in the res.user object that you can introspect :slightly_smiling_face: