1个稳定版本
1.0.2 | 2022年8月9日 |
---|
#92 in #rate-limiting
44KB
867 行
BuiltByBit Rust API包装器
BuiltByBit HTTP API的异步Rust包装器。
安装与使用
[dependencies]
bbb_api_wrapper = "1.0.1"
在/examples
目录下可以找到大量示例。
use bbb_rust_api_wrapper::{APIWrapper, APIToken};
...
let token = APIToken::Private(String::from("Find @ https://builtbybit.com/account/api"));
let wrapper = APIWrapper::new(token).await.unwrap();
let member = wrapper.members().fetch(87939).await.unwrap();
assert_eq!("Harry", member.username());
问题与支持
如果您在使用此包装器时遇到错误并希望报告,或者需要一般性的帮助/支持,请使用问题跟踪器并在创建问题时适当标记。
我会尽量在合理的时间内回复问题。
依赖
~6–22MB
~295K SLoC