#http-post #post #http #bot #mattermost #post-requests

mmrs

用于向MatterMost服务器发送POST请求的小型库

3个版本

0.1.2 2020年1月17日
0.1.1 2020年1月16日
0.1.0 2020年1月16日

#6 in #mattermost

自定义许可

8KB
123

mmrs

MatterMost Rust:用Rust编写的非常简单的MatterMost接口库

示例

use mmrs; 

fn main() {
    let your_handle = "Degausser".to_string();
    let your_name = "Ricky".to_string();
    let mut message: mmrs::MMBody = mmrs::MMBody::new();

    message.username = Some("mmrsBOT".to_string());
    message.channel = Some("Town Square".to_string());

    message.text = Some(format!(
        "{} is known as {}",
        &user,
        &your_name
    ));

    let body = message.to_json().unwrap();

    let response = mmrs::send_message("https://127.0.0.1:9009/post", body.to_string());
    
    match response {
        Ok(code) => {
            if code == 200 {
                println!("{}: Sucess!", code);
            } else {
                println!("Error bad response code: {}\n\n", code);
            }
        }
        Err(e) => {
            println!("Error: {}\n\n", e);
        }
    }
} 

依赖

~12–22MB
~345K SLoC