Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

Read a Single Facebook Post

See more Facebook Examples

Demonstrates how to read the contents of a single Facebook post. A post is an individual entry in a profile's feed. The profile could be a user, page, app, or group.

Chilkat Rust Downloads

Rust

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// This example assumes a previously obtained an access token
let oauth2 = chilkat::OAuth2::new();
oauth2.set_access_token("FACEBOOK-ACCESS-TOKEN");

let rest = chilkat::Rest::new();

// Connect to Facebook...
if rest.connect("graph.facebook.com", 443, true, true).is_err() {
    println!("{}", rest.last_error_text());
    return;
}

// Provide the authentication credentials (i.e. the access key)
let _ = rest.set_auth_o_auth2(&oauth2);

// This example assumes a post id was already retrieved.
// For example, it could've been retrieved by reading the user's feed:
// See Parsing the Facebook User Feed for code showing how to parse the JSON feed content.

let post_id = "10224048320139890_10210156138515282".to_string();

let sb_path = chilkat::StringBuilder::new();
let _ = sb_path.append("/v2.7/");
let _ = sb_path.append(&post_id);

// Select the fields we want.
// This example will select almost all the possible fields.
// See https://developers.facebook.com/docs/graph-api/reference/post/
let _ = rest.add_query_param("fields", "id,message,created_time,caption,description,from,link,name,object_id,picture,place,privacy,properties,shares,source,status_type,story,targeting,to,type,updated_time,with_tags");

let Ok(response_json) = rest.full_request_no_body("GET", &sb_path.get_as_string().unwrap_or_default()) else {
    println!("{}", rest.last_error_text());
    return;
};

let json = chilkat::JsonObject::new();
json.set_emit_compact(false);
let _ = json.load(&response_json);

// Show the JSON in human-readable format.
println!("{}", json.emit().unwrap_or_default());

// A sample JSON response is shown here.  
// { 
//   "id": "12345678901234567_12345678900000004",
//   "message": "Ignore my posts -- I'm doing some testing for Facebook related programming...",
//   "created_time": "2016-09-29T20:46:18+0000",
//   "from": { 
//     "name": "John Doe",
//     "id": "12345678901234567"
//   },
//   "link": "https:\/\/www.facebook.com\/photo.php?fbid=10210199026247451&set=a.1237223526054.2038240.1094202869&type=3",
//   "object_id": "10210139026347451",
//   "picture": "https:\/\/scontent.xx.fbcdn.net\/v\/t1.0-9\/14462791_10210199026647451_7830642117574407060_n.jpg?oh=a7f9ed10ce9cd81a82adeb541c60e2e2&oe=58ABB195",
//   "privacy": { 
//     "allow": "",
//     "deny": "",
//     "description": "Public",
//     "friends": "",
//     "value": "EVERYONE"
//   },
//   "status_type": "added_photos",
//   "type": "photo",
//   "updated_time": "2016-09-29T20:46:18+0000"
// }

// This is the code to parse some fields in the JSON response.
println!("type: {}", json.string_of("type").unwrap_or_default());
println!("message: {}", json.string_of("message").unwrap_or_default());
println!("id: {}", json.string_of("id").unwrap_or_default());
println!("link: {}", json.string_of("link").unwrap_or_default());
println!("privacy descripton: {}", json.string_of("privacy.description").unwrap_or_default());

let dtime = chilkat::DateTime::new();
let b_local_time = true;
let _ = dtime.set_from_timestamp(&json.string_of("created_time").unwrap_or_default());
let dt = chilkat::DtObj::new();
dtime.to_dt_obj(b_local_time, &dt);

println!("{}/{}/{}  {}:{}", dt.month(), dt.day(), dt.year(), dt.hour(), dt.minute());