gpt4 book ai didi

android - 使用cordova在android中添加google plus

转载 作者:行者123 更新时间:2023-11-30 02:27:09 24 4
gpt4 key购买 nike

根据主题,我想使用 cordova 在 android 项目中添加 google plus (API)。为此,我使用以下链接教程 cordova-plugin-googleplus .实际上我无法弄清楚这个问题,因为我正在按照 iOS 和 android 的教程做所有镫骨。它适用于 iOS,但不适用于 Android。我有两个客户 ID。 这是我的代码。

function login() {
window.plugins.googleplus.login(
{
//'androidApiKey': 'demo2-f2piclv62253f0k177i3se3k30fcbqtq.apps.googleusercontent.com'
'iOSApiKey': 'demo3462-f2piclv62253f0k177i3se3k30fcbqtq.apps.googleusercontent.com'
},
function (obj) {
document.querySelector("#image").src = obj.imageUrl;
document.querySelector("#image").style.visibility = 'visible';
document.querySelector("#feedback").innerHTML = "Hi, " + obj.displayName + ", " + obj.email;
},
function (msg) {
document.querySelector("#feedback").innerHTML = "error: " + msg;
}
);
}

enter image description here

最佳答案

最后我得到了解决方案,我正在使用 cordova-plugin-googleplus插件,它适用于 iOS,因为 iOS clientId 通过 HTML 传递。但对于 Android,您必须以不同的方式传递 ClientId。对我来说:项目 -> 插件 -> android.json

        "nl.x-services.plugins.googleplus": {
"CLIENT_ID": "your_client_ID",
"PACKAGE_NAME": "com.demo.googlelogin"
}

关于android - 使用cordova在android中添加google plus,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27797638/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com