Created
May 16, 2018 11:55
-
-
Save DavidMellul/80f447c9ccfca9b4aeb360fd92fb75b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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