Skip to content

Instantly share code, notes, and snippets.

@parahall
Created December 25, 2017 19:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save parahall/d35ba680d1640966afa83b099da4e2d2 to your computer and use it in GitHub Desktop.
Save parahall/d35ba680d1640966afa83b099da4e2d2 to your computer and use it in GitHub Desktop.
public class NetworkHttpUnauthorizedReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
int httpCode = intent.getIntExtra(IntentExtras.HTTP_CODE, -1);
if (httpCode == HttpURLConnection.HTTP_UNAUTHORIZED) {
LoginActivity.logOut(context);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment