将OAuth用于+;1并在谷歌上分享+;

将OAuth用于+;1并在谷歌上分享+;,oauth,google-plus,Oauth,Google Plus,有没有办法通过OAuth在Google+上+1网页或共享?(我正在创建一个移动web应用程序,使用默认按钮的问题是,它们可能会创建一个弹出窗口,这对移动web应用程序不好!)您可以使用ACTION\u SEND启动Google+共享对话框 Intent shareIntent = ShareCompat.IntentBuilder.from(MyActivity.this) .setText("Hello World!") .setType("text/plain") .get

有没有办法通过OAuth在Google+上+1网页或共享?(我正在创建一个移动web应用程序,使用默认按钮的问题是,它们可能会创建一个弹出窗口,这对移动web应用程序不好!)

您可以使用ACTION\u SEND启动Google+共享对话框

Intent shareIntent = ShareCompat.IntentBuilder.from(MyActivity.this)
   .setText("Hello World!")
   .setType("text/plain")
   .getIntent()
   .setPackage("com.google.android.apps.plus");

startActivity(shareIntent);
可能重复的