サーバーから画像を投稿し、Android アプリケーションから Google プラスの両方に URL をリンクしようとしましたが、両方を Google プラスに投稿することはできません..
私は投稿するためにこのコードを試しました..
Intent shareIntent = new
PlusShare.Builder(GooglePlusActivity.this)
.setType("text/plain")
.setText("Welcome to the Google+ platform....")
.setContentDeepLinkId("/cheesecake/lemon",
"Lemon Cheesecake recipe",
"A tasty recipe for making lemon cheesecake.",
Uri.parse("http://www.onedigital.mx/ww3/wp-content/uploads/2012/02/android-420x315.jpg"))
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.getIntent();`
このコードでは、画像のみを投稿し、URL を投稿していません。URL は表示されますが、クリックできません。
誰かが私の問題の解決策を教えてくれます..