I want to use the access token after google oauth login to fetch the profile details like the photo, first name and last but seems there is no access token present in the session.
TL;DR
- Developer followed a guide for Next JS server-side authentication, but the `providerAccessToken` is empty in the session after Google OAuth login.
- They want to use the access token to fetch profile details like the photo, first name, and last name.
- Solution: The issue likely stems from how the access token is handled in the authentication flow. Double-check the implementation steps and ensure the access token is being stored correctly in the session.