Habitica Api Rust Client

This is a unnoficial Habitica V3 Api Client for Rust.

Feel free to use, open an issue or a PR.

Supported Operations

List user tasks

Method: client.get_all_tasks()

Reference: Task - Get a user's tasks

Usage

In order to use the api, you will need an active account on Habitica, with that, get the user_id and api_token from the Api Configurations Page.

With the user_id and api_token create a new instance of ApiCredentials with the following command:

ApiCredentials::new(user_id, api_token)

Having created the credentials, you can create the HabiticaClient:

HabiticaClient::new(api_credentials)

And then use it to call the supported api methods:

habitica_client.get_all_tasks()

Examples

``` extern crate habiticarustclient;

use habiticarustclient::task::apicredentials::ApiCredentials; use habiticarustclient::task::habiticaclient::HabiticaClient;

pub fn main() { let userid: String = "youuserid".tostring(); let apitoken: String = "youapitoken".tostring();

let api_credentials = ApiCredentials::new(user_id, api_token);
let habitica_client = HabiticaClient::new(api_credentials);

let tasks = habitica_client.get_all_tasks();

print("{:?}", tasks);

}

```