2013-01-04 114 views
1

我正在使用Facebook SDK 3.0 for Android。android facebook sdk 3.0自定義按鈕

自定義如何讓喜歡按鈕

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

有OAuthException (#3)應用程序不必做此API調用的能力。

沒有辦法在應用程序中使用嗎?

+0

http://stackoverflow.com/questions/5935034/integrate-facebook-with-like-button-in-android-and-iphone – Gridtestmail

回答

3

Facebook圖形API不提供該功能喜歡facebook頁面。相反,您可以打開一個包含頁面網址的網頁視圖,以便您可以登錄並喜歡您的頁面。

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