| Crates.io | fb_poster |
| lib.rs | fb_poster |
| version | 0.1.9 |
| created_at | 2024-02-06 14:45:27.703396+00 |
| updated_at | 2025-04-21 11:11:03.005034+00 |
| description | An unofficial Rust API client for Facebook post uploads. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1128998 |
| size | 60,860 |
An unofficial Rust API client for Facebook post uploads.
Create a Fecebook app on Developer Page
Your Facebook app must be in Live mode to make your posts visible for others.
Take ACCESS_TOKEN from Graph API Explorer. You can get 2 months token by pressing info icon.
Add the desired permissions to allow your app to make posts.
pages_manage_engagementpages_manage_postspages_read_engagementpages_read_user_engagementpublish_video permission, if you need to publish a videoTake PAGE_ID from page that you planning to do post.
More useful information you can find in Offical Facebook API Documentation Current version v19.0.
use fb_poster::*;
use anyhow::{Ok, Result};
const ACCESS_TOKEN: &str = "YOUR_ACCESS_TOKEN";
const PAGE_ID: &str = "YOUR_PAGE_ID";
#[tokio::main]
async fn main() -> Result<()> {
// Bring your secrets into a scope
let secrets = Secrets::new(ACCESS_TOKEN, PAGE_ID);
let message = "Your message".to_string();
let link = "https://your_link".to_string();
// Build a body for a request
let body = Post::new(secrets)
.with_message(message)
.with_link(link);
// Sending and get repsonse
body.send().await?;
Ok(())
}
use fb_poster::*;
use anyhow::{Ok, Result};
const ACCESS_TOKEN: &str = "YOUR_ACCESS_TOKEN";
const PAGE_ID: &str = "YOUR_PAGE_ID";
#[tokio::main]
async fn main() -> Result<()> {
// Bring your secrets into a scope
let secrets = Secrets::new(ACCESS_TOKEN, PAGE_ID);
let path = "/path/to/photo.png".to_string();
// Build a body for a request
let body = Photo::new(secrets, path);
// Sending and get repsonse
body.send(&secrets).await?;
Ok(())
}
use fb_poster::*;
use anyhow::{Ok, Result};
const ACCESS_TOKEN: &str = "YOUR_ACCESS_TOKEN";
const PAGE_ID: &str = "YOUR_PAGE_ID";
#[tokio::main]
async fn main() -> Result<()> {
// Bring your secrets into a scope
let secrets = Secrets::new(ACCESS_TOKEN, PAGE_ID);
let path = "/path/to/video".to_string(); // or url for .hosted_video()
let title = "Title".to_string();
let description = "Description".to_string();
let thumb = "path/to/thumb".to_string();
// Build a body for a request
let body = Video::new(secrets)
.local_video(path)
.with_title(title)
.with_description(description)
.with_thumbnail(thumb)
// Sending and get repsonse
body.send().await?;
Ok(())
}
use fb_poster::*;
use anyhow::{Ok, Result};
const ACCESS_TOKEN: &str = "YOUR_ACCESS_TOKEN";
const PAGE_ID: &str = "YOUR_PAGE_ID";
#[tokio::main]
async fn main() -> Result<()> {
// Bring your secrets into a scope
let secrets = Secrets::new(ACCESS_TOKEN, PAGE_ID);
let path = "/path/to/video".to_string(); // or url for .hosted_video()
let title = "Title".to_string();
let description = "Description".to_string();
let thumb = "path/to/thumb".to_string();
// Build a body for a request
let body = Reels::new(secrets)
.local_video(path)
.with_description(description)
// Sending and get repsonse
body.send().await?;
Ok(())
}
Non-Resumable Upload (Video limitation is 1GB 20min)
Video
Reels