Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created March 2, 2016 10:13
Show Gist options
  • Save codenameone/083c1c1ccf45db55a55a to your computer and use it in GitHub Desktop.
Save codenameone/083c1c1ccf45db55a55a to your computer and use it in GitHub Desktop.
String authCode = user + ":" + password;
String authHeader = "Basic " + Base64.encode(authCode.getBytes());
NetworkManager.getInstance().addDefaultHeader("Authorization", authHeader);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment