I’m creating an app that requires a login with twitter function, the app has been whitelisted but when I run
client.requestEmail(session, new Callback<String>() {
@Override
public void success(Result<String> result) {
printOut("TWITTER EMAIL", result.data);
}
@Override
public void failure(TwitterException exception) {
exception.printStackTrace();
}
});
I get an exception
com.twitter.sdk.android.core.TwitterException: Your application may not have access to email addresses or the user may not have an email address. To request access, please visit https://support.twitter.com/forms/platform.
Is there any help or advice or even a reason as to why this wouldnt work?
Note:
Our iOS devs are having similar issues