このコードを使用して、アプリでユーザーの成果を共有しています
if (FacebookDialog.canPresentShareDialog(getApplicationContext(),
FacebookDialog.ShareDialogFeature.SHARE_DIALOG)) {
// Publish the post using the Share Dialog
try {
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setApplicationName(getString(R.string.fb_app_name))
.setName(parameters.getString("name"))
.setCaption(parameters.getString("caption"))
.setDescription(parameters.getString("description"))
.setLink(parameters.getString("link"))
.setPicture(parameters.getString("picture"))
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
} catch (JSONException e) {
e.printStackTrace();
}
壁に表示されているGoogle Playリンクのコンテンツのみを共有した後、アプリのGoogle Playリンクに「リンク」を設定している場合(アプリリンクを共有したようです)、「キャプション」と「」も表示したい場合説明"。
アプリのストーリーとアプリのリンクを共有するにはどうすればよいですか? 前もって感謝します