javascript - Is it possible to get Facebook posts by #hashtag in Graph API 2.3? -


i'm creating web page pulls posts hashtag twitter, instagram, , facebook.

i'm trying facebook posts hashtag , show posts in web page, , trying use graph api javascript sdk it. twitter , instagram easier... facebook giving me challenge.

i see there's documentation here: https://developers.facebook.com/docs/graph-api/reference/hashtag

javascript sdk says

fb.api( "/{hashtag-id}", function (response) {   if (response && !response.error) {     /* handle result */   } } ); 

what's supposed go "/{hashtag-id}"?

i've tried putting in real hashtag (something %23fail) instead of {hashtag-id} seems give error: "(#803) of aliases requested not exist: #fail"

i've played around graph api explorer, can't seem able pull posts hashtag.

it seems working on facebook website. https://www.facebook.com/hashtag/fail

is possible developers using graph api?

thanks.