Gitter API in Rust
https://developer.gitter.im
sh
cargo build
toml
[dependencies]
gitter = "0.2.0"
toml
[dependencies]
gitter = { git = "https://github.com/shmutalov/gitter-rs" }
```rust extern crate gitter; use gitter::Gitter;
...
let api = Gitter::new("YOURACCESSTOKEN").unwrap(); ```
Following code snippets did not updated yet
rust
let user = api.get_user().unwrap();
```rust // Get all rooms let rooms = api.get_rooms().unwrap();
// Get room by id let room = api.get_room("roomID").unwrap();
// Get rooms of some user let rooms = api.get_rooms("userID").unwrap();
// Join room let room = api.join_room("roomID", "userID").unwrap();
// Leave room let room = api.leave_room("roomID", "userID").unwrap();
// Get room id let roomid = api.getroom_id("room/uri").unwrap();
// Search gitter rooms let rooms = api.search_rooms("search/string").unwrap(); ```
```rust // Get messages of room let messages = api.get_messages("roomID", None).unwrap();
// Get one message let message = api.get_message("roomID", "messageID").unwrap();
// Send message api.send_message("roomID", "free chat text").unwrap(); ```
This project is a work in progress.
send_message
methodgitter-rs
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE
and LICENSE-MIT
for details.