获取最新的代理管理器版本

API endpoint: GET /api/last_version
Sample Response:
{"version": "1.280.385","newer": false,"versions": [{"ver": "1.280.385","type": "stable","changes": [{"type": "star","text": "Add render option for unblocker and serp zones"}]}]}
 
Shell
curl"http://127.0.0.1:22999/api/last_version"

Node.js

#!/usr/bin/env noderequire('request-promise')({
	url: 'http://127.0.0.1:22999/api/last_version'
}).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 res = Executor.newInstance()
.execute(Request.Get("http://127.0.0.1:22999/api/last_version"))
.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.Get,
RequestUri = newUri("http://127.0.0.1:22999/api/last_version") }; 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

r = requests.get('http://127.0.0.1:22999/api/last_version')
print(r.content)

这篇文章有帮助吗?