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.

I'm using Facebook SDK 3.0 for Android.

how make a custom likes button

Request request = new Request(session, page_id + "/likes", null, HttpMethod.POST,  new Callback()
{
    @Override
    public void onCompleted(Response response)
    {
        Log.i(DEBUG_TAG, response.toString());
        // TODO Auto-generated method stub
        if (response.getGraphObject() != null)
        {
            //Log.i(DEBUG_TAG, response.toString());
        }
    }
});
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();

page_id = 417732304946490

has OAuthException (#3) Application does not have the capability to make this API call.

no way use in app like ?

share|improve this question

1 Answer

The Facebook graph API does not provide the feature to Like the facebook page. Instead you can open a webview with your page URL, so that your can Log in and Like your page.

 // To open webview
 String url = "your page URL";
 Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
 startActivity(i);
share|improve this answer

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.