次のコードを使用して、Android アプリの Google プラスで投稿を共有しました。しかし、スニペットの説明が表示されません.説明以外のすべてが表示されます.これには何か理由がありますか?
Intent shareIntent = new PlusShare.Builder(this)
.setText("Test")
.setType("text/plain")
.setContentDeepLinkId(
"Example", /** Deep-link identifier */
"Snippet", /** Snippet title */
// ------------ Below Desciption is not visible in post --------------
"Good Example", /** Snippet description */
Uri.parse("https://www.example.com/snippet.png"))
.getIntent();
startActivityForResult(shareIntent, POST_ON_GOOGLE_PLUS);
どんな助けでも大歓迎です。