LOL this fucking guy...
Tried to submit an update AFTER I released... (trying to win the VIP)
http://prntscr.com/4u31hr
If you looked at the code behind the release you would see that instead of reading url parameters the program reads http request headers. Also I changed the password after the release because I knew someone would try.
The code to add:
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
public class Adder {
static String AddData() throws IOException {
URL theURL = new URL("https://fayosbot.appspot.com/api/request/create");
URLConnection uc = theURL.openConnection();
uc.addRequestProperty("secretKey", "!23KeyMaker32!");
uc.addRequestProperty("name", "Alek");
uc.addRequestProperty("exp", "0");
uc.addRequestProperty("time", "1");
uc.addRequestProperty("password", "Alek");
uc.addRequestProperty("state", "HerbChecking");
uc.addRequestProperty("position", "[-1,-1,-1]");
return SourceBuilder.sourceBuilder(uc.getInputStream());
}
}