4个版本
0.0.13 | 2023年12月10日 |
---|---|
0.0.12 | 2023年12月10日 |
0.0.11 | 2022年12月10日 |
0.0.7 |
|
#128 in HTTP客户端
38 每月下载量
135KB
3.5K SLoC
Collaboflow REST API客户端
用于Rust语言的Collaboflow REST API客户端。
这不是官方包,只是一个个人项目。
安装
要求
- Rust 1.65.0+
导入
驱动器可在crates.io上找到。
要在您的应用程序中使用驱动器,只需将其添加到项目的Cargo.toml
中。
[dependencies]
collaboflow-rs = "0.0.13"
示例用法
[dependencies]
collaboflow-rs = "0.0.13"
tokio = "1.22.0"
use collaboflow_rs::{Authorization, CollaboflowClient, Query};
#[tokio::main]
async fn main() -> Result<(), ()> {
let authorization = Authorization::with_api_key("User id", "API key");
let client = CollaboflowClient::new("https://{Collaboflow url}/{Instance name}/api/index.cfm", authorization);
let query = Query::builder().app_cd(1); // Your app cd
let document_id: i32 = 1; // Your document id
let result = client.document.get(document_id, query).await;
match result {
Ok(resp) => {
println!("{:?}", resp);
Ok(())
},
Err(err) => {
println!("{:?}", err);
Err(())
}
}
}
支持API
文档
- getDocumentOverview
- requestDocument
- putDocumentStatus
- deleteDocument
- getDeterms
- getDocumentContents
- simulateDeterms
- searchDocument
MyStatus
文件
表单
用户
- getUsers
- 查询
fields
不受支持。
- 查询
- postUser
- getUser
- putUser
- deleteUser
组
- getGroups
- 查询
fields
不受支持。
- 查询
- postGroup
- getGroup
- putGroup
- deleteGroup
标题
- getTitles
- 查询
fields
不受支持。
- 查询
- postTitle
- getTitle
- putTitle
- deleteTitle
LICENSE
本项目采用MIT协议。
依赖项
~6–20MB
~286K SLoC