API文档

借助REST API,Plume可以被其他应用程序扩展。

获取 API 令牌

要获取一个API,你需要注册你的App并获取一个令牌。 为此,请使用/api/v1/apps API (无需令牌即可访问) 创建一个新应用。将结果储存在别处以备后用。

然后使用以下参数向/api/v1/oath2发送一个请求:

Plume will respond with something similar to:

{
  "token": "<YOUR TOKEN HERE>"
}

To authenticate your requests you should put this token in the Authorization header:

Authorization: Bearer <YOUR TOKEN HERE>