I am using expressJwt (https://github.com/auth0/express-jwt) to do my user validation for an angularjs website. I have an interesting situation where I have a URL (/username/somedata) where anyone can access this page. If they are not logged in, or not this user they only get data marked as public. If they are logged in and are the correct user, they get public and private data.
The problem is that you can only access the JWT (json web token) from req.user on any path starting with /api (which requires being logged in)... and since this page does not require login, it doesn't fall under /api.
Is there some way I can allow access to req.user on a path not under /api? Another thought was to check if they are logged in before requesting the data and using a different path...
ie:
not logged in always use: /username/somedata (always public only data)
is logged in: /api/username/somedata (check if user is author of data before outputting, if author output public and private ... otherwise only public as well)
UPDATE: I tested the multiple paths and it is working great, but I am still curious if you can access req.user another way, so I am not going to answer my own question just yet.
Not sure if it is the best options, but I use the following: