I'm writing an app that incudes "news stream". One type of the entry is facebook post. I'd like to put those posts just like Twitter API allows to - without Login. I do not want to implement Facebook Login feature from theirs API. It is redundant in my case. What I am wondering is the security of this kind of bypass. Is it safe to get plain text (as JSON) from a link:
https://graph.facebook.com/{post-id}?access_token={token}
Token is my personal token that I generated at https://developers.facebook.com/tools/explorer/
Is it safe to use this token using it encoded in my apps code (Android)?
Using URLConnection, OutputStreamWriter, URLEncoder, BufferedReader.
Or schoud I make a .php on my server as the "middleman". (Pointless I guess).
Are there any other ways to get public posts from Facebook?