I’m developing an app which will allow me to post on Facebook.
But I want a native application to post without any external SDK’s. How can I do it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
See the Facebook Authentication docs: http://developers.facebook.com/docs/authentication/
If you need to authenticate your mobile app against Facebook, then follow the
Client-side Flow(further down the page). If you also have a server, then useServer-side flow.For server-side implementation see LeanEngine classes FacebookAuth and FacebookLoginServlet: https://github.com/leanengine/LeanEngine-Server/tree/master/lean-server-lib/src/main/java/com/leanengine/server/auth
On the client side you can use it via a WebView: https://github.com/leanengine/LeanEngine-Android/blob/master/lean-android-lib/src/main/java/com/leanengine/LoginDialog.java