0

我正在使用本教程来学习如何通过 Android 应用程序连接到 Facebook。我对他展示如何在墙上/用户状态上发布内容的部分特别感兴趣。

该教程相当简单,但我的要求是我需要让应用程序将内容与用户发布的内容一起附加。

怎样才能做到这一点?

4

2 回答 2

1

你可以这样做:

private void publishToFacebook(String message)
      {
            long songId = MusicUtils.getCurrentAudioId();
                long albumId = MusicUtils.getCurrentAlbumId();
            String albumartUrl = MusicUtils.getArtworkUrlFromExtrasCache(getApplicationContext(),albumId);
            Bitmap bm = MusicUtils.getArtworkFromExtrasCache(getApplicationContext(),albumId,false,false);
            if(bm == null)
            bm = MusicUtils.getDefaultArtwork(getApplicationContext());

                shareFacebookConnector = new ShareConnector(MediaPlaybackActivity.this, getApplicationContext());
            shareFacebookConnector.setCurrentAlbum(MusicUtils.getCurrentAlbumName());
            shareFacebookConnector.setCurrentArtist(MusicUtils.getCurrentArtistName());
            shareFacebookConnector.setCurrentTrack(MusicUtils.getCurrentTrackName());
        shareFacebookConnector.setCurrentCoverArt(bm);
        if(albumartUrl != null)
        {
        shareFacebookConnector.setCurrentCoverUrl(albumartUrl);
        }

        LayoutInflater inflater = this.getLayoutInflater();
        final View dialoglayout = inflater.inflate(R.layout.facebook_share, (ViewGroup) findViewById(R.id.facebook_share_root));
        final ImageView image = (ImageView) dialoglayout.findViewById(R.id.facebook_cover_view);
        input = (EditText) dialoglayout.findViewById(R.id.facebook_share_content);
        ContextThemeWrapper ctw = new ContextThemeWrapper(this, R.style.AlertDialogCustom);
        AlertDialog.Builder alert = new AlertDialog.Builder(ctw);   
        if(message != null)
        {
                shareFacebookConnector.publishToFacebook(alert, input, message);    
        }
        else
        {
        shareFacebookConnector.publishToFacebook(alert, input, null);  
        }
        alert.setView(dialoglayout);
        alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {  
            bAlertInProgress = false; 
            String messageToPost = input.getText().toString();
            shareFacebookConnector.postMessageToWall(messageToPost, false);         
        } 
    });
    alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

        public void onClick(DialogInterface dialog, int whichButton) {
            bAlertInProgress = false;
            Toast.makeText(MediaPlaybackActivity.this, "Wall post cancelled !", Toast.LENGTH_SHORT).show();
            //finish();    

        }
    });
    bAlertInProgress = true;
    mShareKey = "********";
    alertDialog = alert.create();
    alertDialog.show();
}
于 2013-08-13T02:58:32.537 回答
1

您必须以身份打开会话,并且需要“publish_action”session.openForPublish();权限

于 2013-08-13T05:50:53.833 回答