How can I send user authentication information while making URLConnection?
Created May 7, 2012
Christopher Schultz You'll want to use
HttpURLConnection.setRequestProperty
and set all the appropriate headers to to HTTP authorization.
-chris