我是DigitalOcean的新手。我想运行基本的java程序来访问DigitalOcean droplet。请让我知道一步一步的程序。
答案 0 :(得分:1)
您可以使用官方API获取有关液滴的信息。这是一个简单的REST api,您可以使用Java的URL
类来调用它。
有关如何使用Java进行HTTP GET的更多信息:
Using java.net.URLConnection to fire and handle HTTP requests
要简单检索有关您的帐户,Droplet等的信息,您应该使用GET
方法。您请求的信息将作为JSON对象返回给您。您可以找到许多Java的JSON库(例如json.org/java)。
DigitalOcean API的文档:
https://developers.digitalocean.com/
与Droplets相关的文档部分:
https://developers.digitalocean.com/#droplets
所有Droplet的列表:
https://developers.digitalocean.com/#list-all-droplets
通过id:
检索现有的Droplethttps://developers.digitalocean.com/#retrieve-an-existing-droplet-by-id