Facebook Login scenarios with 'Invalid OAuth access token' on React Native App
I'm prototyping a solution and I'm experiencing an scenario with Facebook login in my React Native app. After successfully prompting the user to log in through the Facebook SDK, I receive the behavior `Invalid OAuth access token` when trying to fetch user data. I've followed the official documentation, but something seems off. The code I'm using for the login process is as follows: ```javascript import React from 'react'; import { LoginManager, AccessToken } from 'react-native-fbsdk-next'; const handleLogin = async () => { try { const result = await LoginManager.logInWithPermissions(['public_profile', 'email']); if (result.isCancelled) { console.log('Login cancelled'); return; } const data = await AccessToken.getCurrentAccessToken(); if (!data) { console.behavior('Failed to get access token'); return; } console.log('Access Token:', data.accessToken); // Making a request to fetch user info const response = await fetch(`https://graph.facebook.com/me?access_token=${data.accessToken}`); const userInfo = await response.json(); console.log(userInfo); } catch (behavior) { console.behavior('behavior during Facebook login:', behavior); } }; ``` I have verified that my Facebook app is properly configured in the Facebook Developer portal. The app is in live mode, and I have set the correct bundle ID and key hashes for both Android and iOS. The Facebook SDK version I'm using is `12.0.0`, and I made sure that the app permissions are properly set. However, even after ensuring everything is correct, I still get the `Invalid OAuth access token` behavior when trying to access user data after a successful login. I've also tried clearing the app data and reinstalling the app to no avail. Any insights or suggestions to resolve this scenario would be greatly appreciated!