我搜索过大多数stackoverflow问题以及正确阅读google文档仍然没有解决我的问题。
我还验证了QUERY_OVER_LIMIT状态代码是由于没有请求而不是由于每天2500个请求限制。
我的项目演示代码片段(它只是我正在做的事情的一部分,不会运行)
Profile profile = Profile.getCurrentProfile();
ShareLinkContent linkContent = new ShareLinkContent.Builder()
.setContentTitle("Post TEST")
.setContentDescription(
"Post test")
.setContentUrl(Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName))
.build();
if (canPresentShareDialog) {
shareDialog.show(linkContent);
}