Facebook Messenger应用程序集成

时间:2015-11-06 23:37:31

标签: java

我只是试图遵循Facebook的官方指导,如何将我的应用程序集成到Facebook Messenger。

某处有一个带有空参数的Java语句。只是点“......”。 或者,我是否必须按原样放置点?

Bitmap image = ...
SharePhoto photo = new SharePhoto.Builder()
        .setBitmap(image)
        .build();
SharePhotoContent content = new SharePhotoContent.Builder()
        .addPhoto(photo)
        .build();

或者这个:

Uri videoFileUri = ...
ShareVideo = new ShareVideo.Builder()
        .setLocalUrl(videoUrl)
        .build();
ShareVideoContent content = new ShareVideoContent.Builder()
        .setVideo(video)
        .build();

0 个答案:

没有答案