An internal error has occurred. invalid access_token error code : 43 in Android
Clash Royale CLAN TAG#URR8PPP
An internal error has occurred. invalid access_token error code : 43 in Android
I'm trying to develop Facebook login on Android. But title's error occurs although iOS version does work. I use React-Native-Firebase
library. I can't understand why this error occurs.
React-Native-Firebase
package com.company.testApp;
import android.content.Intent;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName()
return "testApp";
// react-native-fbsdk
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data)
super.onActivityResult(requestCode, resultCode, data);
MainApplication.getCallbackManager().onActivityResult(requ estCode, resultCode, data);
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.