This is pretty interesting.
Simply do this.
Press Alt + enter to remove the Red lined error messages. It works. It helps to send get Params as Query String.
Uri.Builder builder = new Uri.Builder();
builder.scheme("http")
.authority("kmdahousing.in")
.appendPath("ApiController")
.appendPath("complaints")
.appendQueryParameter("UID", String.valueOf(userID));
String URL = builder.build().toString();
Comments
Post a Comment