Facebook: Fetching status message for a particular date - facebook

I want to read my status message that was posted at a particular date, say 6 months back. Is it possible to fetch this message using the Facebook Graph APIs?
Thanks,
Saurabh

Yes, check for the since and until parameters.
http://developers.facebook.com/docs/reference/api/
until, since (a unix timestamp or any date accepted by strtotime): https://graph.facebook.com/search?until=yesterday&q=orange

Related

Instagram/Facebook deprecating many APIs [duplicate]

I use some self developed script to get info about my posts and followers. Recently I discovered that Instagram changed rate limits for my app. I see following info in headers:
x-ratelimit-limit: 200
I learned Instagram blog and page with changes but found no mentions about any changes since Oct 1, 2017.
Is this new limit related only to my token or to entire platform? Could you check your token?
Yes It is, Although no official communication.
I also experienced that.
I found this in their documentation.
The Instagram API uses the same rate limiting as the Graph API (200 calls per user per hour) with one exception: the /media/comments edge limits writes to 60 writes per user per hour. Please refer to the Graph API's rate limiting documentation for more information.
https://developers.facebook.com/docs/instagram-api/overview/#rate-limiting
https://techcrunch.com/2018/04/02/instagram-api-limit/
Hope this will be helpful.
Update:-
Further on 4th April few more APIs deprecated by Instagram.
https://www.instagram.com/developer/changelog/
Some perspective:
This 200 per hour call has been in the Graph API documentation for at least a month (according to wayback machine).
Facebook must have panicked over the weekend and pressed the "require Graph API permissions" button, thus our current situation. :\
Yes,
The limit has been reduced.
Here are some reference links for detailed documentation:
Instagram API limit reduced to 200 from 5000
https://techcrunch.com/2018/04/02/instagram-api-limit/
https://developers.facebook.com/docs/instagram-api/overview/#rate-limiting
Hope it helps
Thanks
Here's our answer: https://www.instagram.com/developer/changelog/
The API deprecated immediately. So really the limits probably don't matter that much anymore. I really don't see myself building another app based on their API...
Here is The New Instagram's Public Api Update , unfortunately Limit rates are worthless for some Features in Instagram .
April 4, 2018
The following endpoints are deprecated immediately:
Follows and Relationships
GET /users/self/follows
GET /users/self/followed-by
GET /users/self/requested-by
GET /users/{user-id}/relationship
POST /users/{user-id}/relationship
Commenting on Public Content
GET /media/{media-id}/comments (Deprecation not relevant when fetching comments for self media)
POST /media/{media-id}/comments
DEL /media/{media-id}/comments/comment-id
Media
GET /media/{media-id}
GET /media/shortcode/{shortcode}
Likes
GET /media/{media-id}/likes
POST /media/{media-id}/likes
DEL /media/{media-id}/likes
User Search
GET /users/{user-id}
GET /users/{user-id}/media/recent
GET /users/self/media/liked
GET /users/search
Subscriptions - to receive notifications when media is posted
Some information on Public Content returned through hashtag and location search will be removed - Name, Bio, Comments, Commenters, Follower Count, Following Count, Post Count, and Profile Picture

Is there any API to get the Date wise likes,comments,shares count

Is there any API to get the following data.
Date wise likes,comments,shares count
Likes count based on age,gender
Recent Notifications
Messages of page(page Inbox)
I have tried for couple of days but no luck. Could anyone please help me on this? Thanks in advance.
By using this graph uri, you will get likes, comment, share count of the each post for the particular date:
{Page-id}/feed?fields=id,created_time,shares,comments.limit(1).summary(true),reactions.limit(1).summary(true)&since=2018-01-11&until=2018-01-12

Facebook creating event start_time format issue

I am using FB API for creating events and I have problem with timeformat of start_time. When I use this format:
2013-05-04T09:00:00+0200
witch is relevant to my timezone I am getting back error code 100 about Invalid parameter.
I've tested that a little bit so I know that problem is in "+". When I use this api same way but for any time with "-" (2013-05-04T09:00:00-0200) it works and event is created - of course with wrong time displayed on FB page...
Any ideas? Thank you very much!

Getting user statuses/posts using API

I want to collect some posts/statuses using https://graph.facebook.com/search?q=sampleword, but it didn't return any results.
I use this word in my status: http://www.facebook.com/100002364215777/posts/189715107783962 , so it should be found.
What I did wrong/how to do it in another way?
For a start you will need to regeister as a facebook developer and get an access token.
Please read the Graph API doc It will tell you more about Authorization and how to do Searches.
I've found an answer few days ago - it's a bug: http://developers.facebook.com/bugs/251747031550291?browse=search_4ede11dc12bef5f22614385

Possible to get when a facebook friend request was issued?

The friend_request stream contains 2 fields - uid_from and uid_to. There's no date info on when the request was made.
Is ther any other table that contains that information?
Thanks!
Got word back on the Facebook forums - it's not possible
You can track that yourself, on a going forward basis, but subscribing to friend events. The subscribe API falls under the "real-time" updates. Not sure what you are trying to do.
http://developers.facebook.com/docs/api/realtime
If you look at http://facebook.com/me?and=you for new friends it shows their date added. This is public data and has to be stored openly somewhere!!