I am trying the Facebook AccountKit as shown here: https://developers.facebook.com/docs/accountkit/android/integrating
I started the AccountKitAcitivity with:
AccountKitConfiguration.AccountKitConfigurationBuilder configurationBuilder =
new AccountKitConfiguration.AccountKitConfigurationBuilder(
LoginType.PHONE,
AccountKitActivity.ResponseType.TOKEN);
intent.putExtra(
AccountKitActivity.ACCOUNT_KIT_ACTIVITY_CONFIGURATION,
configurationBuilder.build());
startActivityForResult(intent, APP_REQUEST_CODE);
After I finish the SMS login flow with "verified" at the end, when I call AccountKit.getCurrentAccount(...) in my activity, I am getting "API calls from the server require an appsecret_proof argument" error.
This can only be "solved" by turning ""App Secret Proof for Server API calls" to off. It makes my app less secure...any suggestion?