1 2 3 4 5
public static void verifyWithCode(String code, FunctionCallback<Object> callback) { Map<String, String> params = new HashMap<>(); params.put("code", code); ParseCloud.callFunctionInBackground("verifyWithCode", params, callback); }