伙计们,我在这里关注 api-doc https://developers.google.com/+/mobile/android/getting-started,因为他们告诉注册应用程序apis/console
,我注册了它并获得了客户端 ID,但不要知道在哪里使用这个 id。
我想以编程方式在墙上(Streams)上发布,我在这个文档中有一个示例,如下面的代码
Intent shareIntent = new PlusShare.Builder(this)
.setType("text/plain")
.setText("Welcome to the Google+ platform.")
.setContentUrl(Uri.parse("https://developers.google.com/+/"))
.getIntent();
startActivityForResult(shareIntent,0);
但是当我运行它时,我得到了ActivityNotFound Exception
,你能告诉我如何解决它,
如果你需要更多关于我的问题的信息,我可以在这里分享我的代码。谢谢