Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Created May 16, 2018 11:55
Show Gist options
  • Save DavidMellul/80f447c9ccfca9b4aeb360fd92fb75b2 to your computer and use it in GitHub Desktop.
Save DavidMellul/80f447c9ccfca9b4aeb360fd92fb75b2 to your computer and use it in GitHub Desktop.
// Configuration Stuff
// ...
String url = "http://soulmate.com/app/manage_users.php";
// AsyncTask stuff to make an HTTP GET request on a remote REST API
// ...
HTTPRequest request = new HTTPRequest(url);
request.setMethod('POST');
request.addBodyParameter('type', 'get_infos');
request.addBodyParameter('userid', <uid>);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment