-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Labels
Description
where did you get documentation about the fields a json request should contain?
as instance, here
public String add_user(String email) {
JSONObject json = new JSONObject();
try {
json.put("a", "ur");
json.put("u", email);
json.put("l", 1);
} catch (JSONException e) {
e.printStackTrace();
}
return api_request(json.toString());
}
how do you know those "a","u","l" ? Is there a website or something?
also, I do not need the whole functions from the official sdk; do you think is still possible to send POST and GET requests to them?