I want to get a user's wall post (photo or video) shared from Facebook pages. I am using graph.facebook.com/USER_ID/feed option to get this data via read_stream permission. Is there any other option available for the required task?
I have to post status on user's wall through my app whenever required. I am using publish_actions option.
The problem is that these permissions need review from Facebook. I'm working on the website and App review required Privacy Policy URL. Is this possible to submit for review based on local host site address? What should I write in Privacy Policy URL and Terms of Service URL options??? Because my website is in development phase and I need user's account data for further work.
About
read_stream:Source: https://developers.facebook.com/docs/facebook-login/permissions/v2.2#reference-read_stream
You may try to use
/me/statuseswith theuser_statuspermission instead.Obviously, you cannot send anything in that only runs on localhost, you should have a working prototype showing how exactly you are using the permissions. Also, you are not allowed to autopost anything to the user wall just because he authorized
publish_actions. Every single entry has to get approved by the user and every single entry must be 100% user generated.