我正在用ionic开发一个移动的应用程序,我想添加一个谷歌登录。就像我使用firebase一样,我用cordova-plugin-googleplus实现了登录按钮。它最初工作,但最近,在一个干净的状态和重新添加iOS平台后,它停止工作,并在控制台上抛出“钥匙链错误”消息。
在Android中,它运行良好;现在,我已经尝试了所有的方法(禁用并重新启用钥匙链共享功能,清理所有环境并重建它,检查整个GoogleService-Info.plist,检查reversed_client_id,...我不知道我错过了什么)。
一些附加信息:
Your system information:
Cordova CLI: 6.4.0
Gulp version: CLI version 3.9.1
Gulp local: Local version 3.9.1
Ionic Framework Version: 1.2.1-nightly-1867
Ionic CLI Version: 2.1.4
Ionic App Lib Version: 2.1.2
ios-deploy version: 1.8.6
ios-sim version: 5.0.11
OS: Mac OS X Sierra
Node Version: v4.4.4
Xcode version: Xcode 8.1 Build version 8B62
已安装的插件:
cordova-plugin-calendar 4.5.5 "Calendar"
cordova-plugin-console 1.0.4 "Console"
cordova-plugin-device 1.1.3 "Device"
cordova-plugin-dialogs 1.3.0 "Notification"
cordova-plugin-fcm 1.1.5 "FCMPlugin"
cordova-plugin-googleplus 5.1.1 "Google SignIn"
cordova-plugin-inappbrowser 1.5.0 "InAppBrowser"
cordova-plugin-splashscreen 2.1.0 "Splashscreen"
cordova-plugin-transport-security 0.1.2 "App Transport Security"
cordova-plugin-whitelist 1.3.0 "Whitelist"
ionic-plugin-keyboard 2.2.1 "Keyboard"
config.xml文件(它的一部分):
<plugin name="cordova-plugin-googleplus" spec="~5.1.1">
<variable name="REVERSED_CLIENT_ID" value="XXXX-THIS_HAS_THE_CORRECT_ID-XXXXX"/>
</plugin>
控制台上的错误消息:
keychain error
来自仿真器system.log的一些错误消息:
securityd[16035]: found no keychain client entitlements. task=Xxxxx App[17178]/1#0 LF=0 procid=com.xxxx.xxxx cs_flags=0x22000201
控制器中的登录功能:
$scope.loginGoogle = function(){
$ionicLoading.show();
LogService.log(TAG, 'webClientId : ' + 'XXXXX');
var clienInfo = {};
if(ionic.Platform.isAndroid())
{
clienInfo.webClientId = 'XXXXXXX';
}
window.plugins.googleplus.login(
clienInfo,
function (obj) {
// alert(JSON.stringify(obj));
LogService.log(TAG, 'googleplus.login result : ' + JSON.stringify(obj));
LogService.log(TAG, 'obj.idToken : ' + obj.idToken);
// obj.email // 'eddyverbruggen@gmail.com'
// obj.userId // user id
// obj.displayName // 'Eddy Verbruggen'
// obj.familyName // 'Verbruggen'
// obj.givenName // 'Eddy'
// obj.imageUrl // 'http://link-to-my-profilepic.google.com'
// obj.idToken // idToken that can be exchanged to verify user identity.
// obj.serverAuthCode // Auth code that can be exchanged for an access token and refresh token for offline access
var token = obj.idToken;
var userData = {
displayName : obj.displayName,
avatar : obj.imageUrl,
currentSessionOn : 'google'
};
return AuthService.loginGoogle(token, userData).then(function (result) {
$rootScope.$broadcast(AUTH_EVENTS.loginSuccess);
$ionicLoading.hide();
$state.go('app.tabs.events');
}).catch(function(error){
$ionicLoading.hide();
$scope.message = error.message;
$timeout(function() {
$scope.message = null;
}, 3000);
$rootScope.$broadcast(AUTH_EVENTS.loginFailed);
});
},
function (msg) {
LogService.logError(TAG, 'plugins.googleplus.login error: ' + msg);
$ionicLoading.hide();
});
};
1条答案
按热度按时间vbkedwbf1#
从Xcode启动项目似乎可以解决问题。使用Ionic CLI时问题仍然存在。
Issue reported in github