Friends activity in /me/home - facebook

I use /me/home for get my newsfeed, but I didn't see some friends activity(comment, sharing, like). Somebody know is it possible

You need the read_stream permission for that, and you will most likely not get it approved:
This permission is granted to apps building a Facebook-branded client on platforms where Facebook is not already available. For example, Android and iOS apps will not be approved for this permission. In addition, Web, Desktop, in-car and TV apps will not be granted this permission.
Source: https://developers.facebook.com/docs/facebook-login/permissions/v2.2#reference-read_stream
That being said, i am pretty sure you only get posts of friends, not comments/shares/likes. It´s about the stream, not the activity feed.

Related

Facebook SDK permissions for tagging

I want to get my app approved by Facebook. My app is sharing posts on the users timeline. I requested the user_friends and publish_actions for this. Both got approved from Facebook.
I also requested the "Taggable Friends API", but this wasn't approved.
Do I even need this to publish content with a friend choosen via user_friends? Or is this somehow unrelated to what I'm doing? I only found OpenGraph examples with it and I'm not using OG in any place.

Reading news feeds from Facebook fails after upgrading graph API 2.0

Hi There is a requirement in my application, where we need to show the user news feeds. For this we were using Facebook permission "read-stream" before Facebook has changed their list of permissions.
Now after they have shifted to the new API v2.0 there are comments saying that
"read_stream permission is granted to apps building a Facebook-branded client on platforms where Facebook is not already available. For example, Android and iOS apps will not be approved for this permission. In addition, Web, Desktop, in-car and TV apps will not be granted this permission."
If this is so what is the alternative to make my app fetch news feeds as earlier.
There is a another permission called "User_Posts" which says "Provides access to the posts on a person's Timeline. Includes their own posts, posts they are tagged in, and posts other people make on their Timeline"
But i am not able to see any posts or news feeds in my application when i have replaced "read_stream" with "user_posts".
The alternative is the user_posts permission and the /me/posts endpoint. Of course this does not return posts of friends for privacy reasons. You can read more about that in the changelog.
If you don´t get any results, make sure the Access Token includes the user_posts permission and debug it in the Debugger.

App where i can see my friends location

I'm developing a google maps based app. I would like to integrate the capabilities of being able to see your friends location/s (similar to how you can see uber cars or fiend my friends). currently i have a facebook signin option. Does anyone know what sdk i need to integrate or the name of what this is called so that i can do further research.
There is no way to get the location of Facebook friends, friend permissions are completely gone for privacy reasons: https://developers.facebook.com/docs/apps/changelog
You can only get the location of an authorized User (with the user_location permission), see Facebook docs: https://developers.facebook.com/docs/graph-api/reference/v2.2/user

Get facebook posts from group from others if I am NOT admin

SO, I belong to some facebook group. I am not admin and I want to get all posts from that group by others,
Idea is to filter those and get notification when someone posts something that passes filter.
Example, to get notification when post containing string "laptop" is posted.
Like this:
http://i.stack.imgur.com/yjaYT.jpg
I tries looking into facebook API but cannot find anything if I am not admin...
https://developers.facebook.com/docs/graph-api/reference/v2.2/group/feed
You can read the feed of a group with a User Access Token of any user that is member of the group, not sure what you found for Admins but they don't even get mentioned in the docs.
Keep in mind that you need the user_groups permission, and you will most likely not get it approved:
This permission is granted to apps building a Facebook-branded client on platforms where Facebook is not already available. For example, Android and iOS apps will not be approved for this permission. In addition, Web, Desktop and TV apps will not be granted this permission.
Source: https://developers.facebook.com/docs/facebook-login/permissions/v2.2

Android : How to get new feed user's using graph in new Facebook API?

I want get new feed user's but many the tutorial not working in new Facebook API.
I had login and post comment but i don't know continue get new feed in app Android.
I try in URL ttps://graph.facebook.com/me/home?access_token=MY_ACCESS_TOKEN but return no.
And https://graph.facebook.com/me/feed?access_token=MY_ACCESS_TOKEN then error read_stream. But i had set read_stream premission read_stream. Somebody help me! I need some code but docs developer facebook's is simple so i don't understand.
Sorry my English not good !
https://developers.facebook.com/docs/facebook-login/permissions/v2.0
read_stream - This permission is reserved for apps that replicate the Facebook client on platforms that don’t have a native client.
"no native client" means devices like TVs and stuff.
So this permission will only work for App Admins, most permissions need to get approved now, see changelog: https://developers.facebook.com/docs/apps/changelog
Afaik it is not possible to get access to the user feed anymore (except for App Admins, of course), unless you are creating an App for specific devices.