2
다음 코드를 사용하여 Android 앱에서 google plus의 게시물을 공유했습니다. 하지만 설명의 설명을 보여주지는 않습니다. 설명을 제외한 모든 것을 보여줍니다. 이것에 대한 이유가 있습니까?스 니펫 설명이 Google 플러스 포스트 (Android)에 표시되지 않습니다.
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);
도움을 주실 수 있습니다.
예, Google 플러스 API 콘솔에서 활성화되어 있습니다.이 코드로 시도 할 때 변경된 사항은 PlusShare 대신 PlusShare.Builder builder = new PlusShare.Builder (this)입니다. 빌더 빌더 = 새로운 PlusShare.Builder (this, mPlusClient). 그럼이 둘 사이에는 어떤 차이가 있습니까? – Ponting
모르겠다. 내가 알아낼 수있는 것을 볼 것이다. – class
Ok. 솔루션을 제안 할 때 알려주세요. – Ponting