This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Will we be able to access life events on a timeline?
I want to fetch an event using facebook api like wedding anniversary etc using facebook graph API. Is it possible?
Please refer to Facebook Graph API.
https://developers.facebook.com/docs/reference/api/event/
Related
This question already has answers here:
Facebook API search for hashtag
(4 answers)
Closed 7 years ago.
Facebook stopped providing hashtag searches with API
And now I am using facebook Graph Search API and want to get public post such as comments, status updates who are having conversation about an object eg #Dolphin
Is it possible? How?
Thanks in Advance
It's no longer possible, because public post search has been deprecated with Graph API v2.0.
See
https://developers.facebook.com/docs/apps/changelog#v2_0
Public Post search is no longer available. (/search?type=post&q=foobar)
This question already has answers here:
How can we track hashtags with the new facebook hashtag implementation
(2 answers)
Closed 8 years ago.
I'm building a contest app which requires to find images posted by anyone in their Facebook public timeline with a specific hashtag. User doesn't need to like our page or anything. we just want to gather all the posts that is using that particular hashtag.
Could anyone tell me how?
With Graph API v2.0 and the now gone public post search, you don't have the possibility to search for hashtags anymore.
There's the Public Feed API (https://developers.facebook.com/docs/public_feed), but this is restricted to FB partners only.
I don't see that you can achieve what you desire. Sorry.
This question already has answers here:
How to get Facebook friends' email?
(7 answers)
Closed 9 years ago.
Is is possible in iPhone application to get friends email id on Facebook?
No. You can't get friends' emails. Check out graph api permissions.
https://developers.facebook.com/docs/reference/api/permissions/
NO, Its not possible to get email ids of friends although you can ger facebook ids of friends
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
'Like' a page using facebook graph api
Can we able to like a page via facebbok API. I found method to like a post throught API, but I found nothing in the documentation.
Just go to this site [vist] http://developers.facebook.com/docs/reference/plugins/like/ and take down the code that you need.
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Library to Integrate Facebook login with Play Framework?
I use playframework to make Json/Rest services - no webinterface.
I want to make a service, which posts a message on a Facebook wall.
I had a look at fbconnect and fbgraph, but they seem to only support webinterface.
Am I right ?
Of course, I can just access the Facebook graph API directly, but I would like to know if there are better ways. Later I want to do a lot more with the graph api.
If you want to post to any user's wall you will need the OAuth dialog in order to FB grant access to your app on the user's wall, at least for the first time.
If you are posting to your system's wall then you can get the access token's for your application and store it somewhere.