Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the "highlighted" status of a photo?

In the following screenshot, one of the images (top right) is "highlighted". How do I get this status programmatically?

Facebook photos

like image 695
Blixt Avatar asked Dec 05 '25 06:12

Blixt


1 Answers

You can use [pageid]?fields=posts.fields(timeline_visibility) ,

The return data wil have a field "timeline_visibility" : "starred"

But its only works for facebook pages, when i tried to get for my timeline

[userid]?fields=id,name,posts.fields(timeline_visibility)

return value is "timeline_visibility": "no timeline unit for this post"

like image 93
thomasbabuj Avatar answered Dec 09 '25 09:12

thomasbabuj