Facebook API错误代码110

时间:2013-08-22 07:51:14

标签: android facebook publish fbwebdialogs

有发布对话框,当我使用它时,我的设备上有错误。

这种情况只出现在我的手机上......

你能帮助我吗?

我的代码:

private void publishFeedDialog() {      
    Bundle params = new Bundle();
    params.putString("name", getResources().getString(R.string.r_name));
    params.putString("caption","www.url.com");
    params.putString("description", "My desc");
    params.putString("link", getResources().getString(R.string.url_www));
    params.putString("picture", "http://ulr.com");

    WebDialog feedDialog = (
        new WebDialog.FeedDialogBuilder(this,
            Session.getActiveSession(),
            params))
        .setOnCompleteListener(new OnCompleteListener() {



            @Override
            public void onComplete(Bundle values, FacebookException error) {    
            }

        })
        .build();

    feedDialog.show();
}

请帮我解决此错误。

0 个答案:

没有答案