Hey guys, i have this code :
Twitter.logIn(getActivity(), new Callback<TwitterSession>() {
@Override
public void success(Result<TwitterSession> result) {
Log.d("TWITTER", "TWITTER LOGIN SUCCESS : " + result.response.getReason());
}
@Override
public void failure(TwitterException e) {
Log.d("TWITTER", "FAIL ERROR: " + e.getMessage());
}
});
I get the screen where it says, please authorize app. I click authorize, the window disappears and nothing happens.
Both of the logs(success and failure) dont appear either… how is that possible and what am i missing.
Thanks