如何通过+1按钮获取gogle play网站的网址?那个:
原始地址并不直接。我的意思是这样的:
String URL = "https://play.google.com/store/apps/details?id=my.package.name";
mPlusOneButton.initialize(mPlusClient,
URL , PLUS_ONE_REQUEST_CODE);
你能给我一些示例google play app URL吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
您需要将“my.package.name”替换为您应用的ID。
例如:
https://play.google.com/store/apps/details?id=tunein.player
这是Google Play上TuneIn Radio的网址。 TuneIn Radio的应用ID为:tunein.player
这样可以回答你的问题吗?