Skip to content

Instantly share code, notes, and snippets.

@anta40
Created September 16, 2019 16:40
Show Gist options
  • Save anta40/6c15e2dca084d4532d6ccb18fc14147a to your computer and use it in GitHub Desktop.
Save anta40/6c15e2dca084d4532d6ccb18fc14147a to your computer and use it in GitHub Desktop.
OkHttpClient httpClient = new OkHttpClient();
HttpUrl url = new HttpUrl.Builder()
.scheme("https")
.host("xxx.yyy.zzz")
.addPathSegments("/android_login_api/login.php")
.addQueryParameter("userid", userid)
.addQueryParameter("password", password)
.build();
Request httpRequest = new Request.Builder()
.url(url)
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment