#scripting #http #reqwest #module #stk #language #response

stk-http

基于 reqwest 的 STK HTTP 模块

2 个版本

0.2.1 2020 年 8 月 6 日
0.2.0 2020 年 8 月 6 日

#84 in #reqwest

MIT/Apache

230KB
5.5K SLoC

Build Status

stk-http

基于 reqwest 的 stk HTTP 模块。

使用方法

将以下内容添加到您的 Cargo.toml

stk = "0.2"
stk-http = "0.2"
# not necessary, but useful
stk-json = "0.2"

将其安装到您的上下文中

let mut context = stk::Context::with_default_packages()?;
context.install(stk_http::module()?)?;
context.install(stk_json::module()?)?;

在 Rune 中使用它

use http;
use json;

fn main() {
    let client = http::Client::new();
    let response = client.get("http://worldtimeapi.org/api/ip");
    let text = response.text();
    let json = json::from_string(text);

    let timezone = json["timezone"];

    if timezone is String {
        dbg(timezone);
    }

    let body = json::to_bytes(#{"hello": "world"});

    let response = client.post("https://postman-echo.com/post")
        .body_bytes(body)
        .send();

    let response = json::from_string(response.text());
    dbg(response);
}

依赖项

~6–19MB
~279K SLoC