Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. authAPI.logIn(new InstagramSessionHandler() {
  2. @Override
  3. public void onProfileDataReceived(Profile profile) {
  4. startActivity(new Intent(MainActivity.this,ProfileActivity.class));
  5. finish();
  6. }
  7.  
  8. @Override
  9. public void onErrorOccurred(String error) {
  10. Toast.makeText(getApplicationContext(),error,Toast.LENGTH_LONG).show();
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement