Crates.io | whatspp-cloud-api |
lib.rs | whatspp-cloud-api |
version | 0.1.1 |
source | src |
created_at | 2022-05-21 21:03:15.569927 |
updated_at | 2022-05-21 21:05:40.65655 |
description | Whatsapp Cloud API Rust Client |
homepage | https://github.com/sajuthankappan/whatsapp-cloud-api-rs |
repository | https://github.com/sajuthankappan/whatsapp-cloud-api-rs |
max_upload_size | |
id | 590871 |
size | 8,947 |
RWhatsapp Cloud API Rust Client
let access_token = "<access_token>";
let to = "<to>";
let template_name = "hello_world";
let language = "en_US";
let template = Template::new(template_name, language);
let message = Message::from_template(&to, template);
let client = WhatsppClient::new(&access_token);
client.send_message(&message).await?;
For more examples, please see the tests folder