Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to like a Facebook page via an Android application without using web view?

I know it is an old question, but I still can't find the way to solve it. I want to like a Facebook page by just clicking a button in my Android application.

Page example: https://www.facebook.com/120676358039573

Many posts are telling me Graph API can not like a page, and I don't want to use WebView because users may need to login again in the frame. (User have already logged in to my application with their Facebook account by SSO before).

Is there any other way to do this?

share|improve this question

2 Answers

You can use to send them to your page use fb://page/[Page ID]

hope this helps

Example fb://page/454477637925610

share|improve this answer

You can use the Hackbook library (Facebook SDK) for Android. Using it, you can use and just you need to authenticate the user and using the OAuth you can query to like.

Information about it:

I hope it will help you.

share|improve this answer
I am using Facebook android SDK but i can't find any method to like a page, as graph api cannot be used to like a page – L.C. Echo Chan Oct 15 '12 at 13:57
yeah you are right...Currently, there's no way to like a Page on Facebook programmatically. The best way would be to redirect the user to your Facebook page in a WebView or in the browser for them to like (to prevent spamming, obviously) – Rushabh Patel Oct 15 '12 at 14:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.