API endpoint:
POST /api/add_whitelist_ip
POST body
ip="1.2.1.2"
Shell
curl "http://127.0.0.1:22999/api/add_whitelist_ip"-H "Content-Type: application/json" -d "{\"ip\":\"1.2.1.2\"}"
Node.js
#!/usr/bin/env noderequire('request-promise')({
method: 'POST',
url: 'http://127.0.0.1:22999/api/add_whitelist_ip',
json: {'ip':'1.2.1.2'}
}).then(function(data){ console.log(data); },
function(err){ console.error(err); });
Java
packageexample; importorg.apache.http.HttpHost; importorg.apache.http.client.fluent.*; public classExample { public static voidmain(String[] args) throwsException {
String body = "{\"ip\":\"1.2.1.2\"}"; String res = Executor.newInstance()
.execute(Request.Post("http://127.0.0.1:22999/api/add_whitelist_ip")
.bodyString(body,ContentType.APPLICATION_JSON))
.returnContent().asString();
System.out.println(res) }
}
C#
usingSystem; usingSystem.Net; usingSystem.Net.Http; usingSystem.Net.Http.Headers; public classProgram { public static asyncTaskMain() { var client = newHttpClient(); var requestMessage = newHttpRequestMessage { Method = HttpMethod.Post,
RequestUri = newUri("http://127.0.0.1:22999/api/add_whitelist_ip"),
Content =newStringContent(JsonConvert.SerializeObject(new{
ip ="1.2.1.2"
}), Encoding.UTF8,"application/json")) }; var response = await client.SendAsync(requestMessage); var responseString = await response.Content.ReadAsStringAsync(); Console.WriteLine(responseString); } }
Python
#!/usr/bin/env python
print('If you get error "ImportError: No module named requests", please install it:\n$ sudo pip install requests');
import requests
data ={'ip':'1.2.1.2'}
r = requests.post('http://127.0.0.1:22999/api/add_whitelist_ip', data=json.dumps(data))
print(r.content)