666 reputation
28
bio website
location Malaysia
age 25
visits member for 1 year, 5 months
seen 20 mins ago
stats profile views 41

22h
comment Minimum Access_token require to fetch photos posted in a page
Do you changed anything? Currently graph.facebook.com/152816981564783 not require me to pass any access token.
22h
comment When disliking to my friends post through graph api showing error
duplicated: Similar question at stackoverflow.com/questions/14766499/… and reported bug at developers.facebook.com/bugs/522169787835586
1d
comment Posting a message to a friend's wall using the app access token
OR You can do this as indicated at developers.facebook.com/docs/reference/dialogs/feed, it's not related to access token. Yo can add parameter "to", such as facebook.com/dialog/…
2d
comment Posting a message to a friend's wall using the app access token
post to friend wall is deprecated, please google it before asking question next time. stackoverflow.com/questions/13955488/…
May
15
comment How can I get all my posts to other people, not to my timeline?
@NikitaPlatonenko i have updated my answer.
May
15
comment Refresh token and Access token in facebook API
No, you can only extend the user access token up to 2 months. Unless you are talking about app access token.
May
15
comment How can I get all my posts to other people, not to my timeline?
Also, stream API is not stable for pagination, you need decrease you created_time intelligently when no feed return, because there's case when the user have a long period(compare with created_time<) without post to friends's wall, the feed wouldn't return.
May
15
comment How can I get all my posts to other people, not to my timeline?
Can you test with developers.facebook.com/tools/… ? Also, please make sure this user access token have granted "read_stream" permission.
May
15
comment How can I get all my posts to other people, not to my timeline?
It would return something like : "post_id": "12026000_102012023232324", "created_time": 1368628159, "target_id": null, "description": "林果皞 posted a link to Lim's timeline.",...etc, post_id is there.
May
15
comment How can I get all my posts to other people, not to my timeline?
" I could not get id of this post"? "post_id" field is returned, isn't?
May
15
comment How can I get all my posts to other people, not to my timeline?
You can navigate next page with created_time<last_feed_created_time, isn't it?
May
15
comment feed, home, post not giving actual wall posts in Facebook C# SDK
Facebook have changed the API response, /feed connection would include "100000566619686_629431233752425" "likes a page" story feed and other activities, such as "followed someone", "using profile in English", "comment on someone post"...etc story feed.
May
15
comment feed, home, post not giving actual wall posts in Facebook C# SDK
i have update my answer at stackoverflow.com/questions/16481191/…, can you try this FQL query instead?
May
15
comment How can I get all my posts to other people, not to my timeline?
Do you want to include post to page/group's feed or not?
May
15
comment Facebook graph api- how to get user feed,with out posts about likes and comment by the user?
I have updated my answer.
May
15
comment Facebook graph api- how to get user feed,with out posts about likes and comment by the user?
I have updated my answer.
May
15
comment feed, home, post not giving actual wall posts in Facebook C# SDK
post_id(or simply id) is a unique identity of a post, which you can get from request to "graph.facebook.com/USER_ID/feed" OR FQL API
May
15
comment feed, home, post not giving actual wall posts in Facebook C# SDK
Currently if you request "graph.facebook.com/USER_ID/feed" API, you would get the contents of Activity log section(including wall feed). That's why we have a discussion at stackoverflow.com/questions/16481191 to filter out story(activity) and remains the feed which we can see on wall.
May
15
comment Facebook graph api- how to get user feed,with out posts about likes and comment by the user?
Bad news, the query may return duplicate post, please see my screenshot at stackoverflow.com/questions/16481191/…. Also, i found post to page's type is 164, however i'm not sure the wall's type is always only (46,56,80,56,128,247) type
May
15
comment feed, home, post not giving actual wall posts in Facebook C# SDK
Which post you're not actually getting by using graph.facebook.com/USER_ID/feed? Can you give one public post_id as example?