Skip to content

Instantly share code, notes, and snippets.

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