Domanda

I want a news feeds on facebook in my site that show only the wallpost that have a specific {#hashtag}.

For Example I want to show only my wallpost that has #thankyou. I'm newbie so please give a sample code. Thanks in advance.

È stato utile?

Soluzione

There isnt any exact API to get the hashtag posts,you may try using search API with q=%23hashtag

https://graph.facebook.com/search?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}

For getting wall posts and newsfeeds

/user/home The user's news feed.

https://graph.facebook.com/me/home?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}

/user/feed The user's wall.

https://graph.facebook.com/me/feed?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}

Permissions :read_stream

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top