作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div class="g-plusone" data-size="tall" data-href="GOOGLE PLAY STORE LINK TO MY APP"></div>
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://apis.google.com">
<allow-navigation href="https://apis.google.com" />
ionic serve
),但不适用于应用程序...
ionic run
)
<allow-navigation href="*" />
最佳答案
您的问题是用户没有在 Cordova 浏览器中使用他们的 Google 帐户登录,因此很明显,您在单击 +1 按钮时会看到登录提示。
我了解到您希望访问连接到用户手机/操作系统的全局 Google 帐户并在您的应用程序中使用该帐户。首先,您的应用程序需要凭据才能访问这些数据,然后需要从 Cordova 浏览器中访问这些凭据。有this plugin哪个为你做的。
在您的初始化代码中,您可以调用 window.plugins.googleplus.login(...)
,这将提示用户确认(如有必要)并登录。
确保登录后+1按钮已初始化,因此状态指示正确。例如(假设您使用的是 jQuery):
$(document).ready(function() {
loginToGoogle();
initPlusOneButton();
}
function loginToGoogle() { ... }
function initPlusOneButton() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
}
关于javascript - 如何在 cordova/ionic 应用程序中放置 Google Plus +1 按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35541290/
我是一名优秀的程序员,十分优秀!