google-signin

gapi.auth2.ExternallyVisibleError: Invalid cookiePolicy

妖精的绣舞 提交于 2019-12-17 18:45:36
问题 I'm trying to add a Google Sign In Authentication system to my app, but I keep getting a strange error that I haven't seen anyone get. I'm using EXACTLY the google example code. I thought it could be some mistake when loading the api, so I checked the async loading and everything seems to be loading properly, but I keep getting this error in the console: gapi.auth2.ExternallyVisibleError: Invalid cookiePolicy I searched everywhere for people with the same problem, but I could not find

Google Signin button in AngularJS sometimes does not show up

孤者浪人 提交于 2019-12-17 18:43:15
问题 I followed this link https://developers.google.com/identity/sign-in/web/sign-in to get Google Signin on Angular-based website. I have seen some weird behavior. The signin button sometimes show but not always. When I refresh a page, only 1 in 5 refreshes, the button appears. I tried in Chrome and Safari and both has same behavior. Code: index.html <script src="https://apis.google.com/js/platform.js" async defer></script> <meta name="google-signin-client_id" content="my_client_id"> login.html

R Googlsheets: Unable to use `gs_auth()` in googlesheets package - Sign In With Google Temporarily Disabled App Not Verified Issue

人走茶凉 提交于 2019-12-17 16:40:25
问题 I am unable to authenticate my googlesheets package. Everytime I run the gs_auth() command I am taken to the chrome where I would usually login to enable the package to access my googlesheets: However, lately every time I do this I have the following error from Google: Here my session information: sessionInfo() R version 3.6.1 (2019-07-05) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Debian GNU/Linux 9 (stretch) Matrix products: default BLAS/LAPACK: /usr/lib/libopenblasp-r0.2.19.so

Google/Facebook Sign In in MVVM

好久不见. 提交于 2019-12-17 16:34:38
问题 I'm using MVVM structure with Data Binding in my project. Things get weird when it comes to GG/FB Sign In, because they need Context googleApiClient = new GoogleApiClient.Builder(context) .enableAutoManage(this, this) .addApi(Auth.GOOGLE_SIGN_IN_API, gso) .build(); Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(googleApiClient); startActivityForResult(signInIntent, GOOGLE_AUTH); GoogleApiClient needs Context so I can't pass it to ViewModel, which receives DataBinding events. class

ITMS-90535 Unable to publish iOS app with latest Google Signin SDK

孤人 提交于 2019-12-17 06:34:15
问题 I'm using xcode 7 GM seed and installed latest Google Signin SDK through cocoapods pod "Google/SignIn . I get the attached error when I try to publish my app to apple app store. Help!! Here are the detailed versions of Google SDK pods - Google/Core (1.0.7): - GoogleNetworkingUtilities (~> 1.0) - GoogleSymbolUtilities (~> 1.0) - GoogleUtilities (~> 1.0) - Google/SignIn (1.0.7): - Google/Core - GoogleSignIn (~> 2.0) - GoogleAppUtilities (1.0.0): - GoogleSymbolUtilities (~> 1.0) -

ITMS-90535 Unable to publish iOS app with latest Google Signin SDK

守給你的承諾、 提交于 2019-12-17 06:34:05
问题 I'm using xcode 7 GM seed and installed latest Google Signin SDK through cocoapods pod "Google/SignIn . I get the attached error when I try to publish my app to apple app store. Help!! Here are the detailed versions of Google SDK pods - Google/Core (1.0.7): - GoogleNetworkingUtilities (~> 1.0) - GoogleSymbolUtilities (~> 1.0) - GoogleUtilities (~> 1.0) - Google/SignIn (1.0.7): - Google/Core - GoogleSignIn (~> 2.0) - GoogleAppUtilities (1.0.0): - GoogleSymbolUtilities (~> 1.0) -

Firebase Overwrites Signin with Google Account

吃可爱长大的小学妹 提交于 2019-12-17 05:08:38
问题 There doesn't seem to be any mention of this in the documentation, and all I found was this and this, where I would like to confirm this: If there is an existing account with the same email address but created with other credentials (e.g. password or non-trusted provider), the previous credentials are removed for security reasons. If a user signs in through Facebook or email/password and later through Google, their account sign in method is converted to Google. It only happens with Google and

Firebase Overwrites Signin with Google Account

烈酒焚心 提交于 2019-12-17 05:07:59
问题 There doesn't seem to be any mention of this in the documentation, and all I found was this and this, where I would like to confirm this: If there is an existing account with the same email address but created with other credentials (e.g. password or non-trusted provider), the previous credentials are removed for security reasons. If a user signs in through Facebook or email/password and later through Google, their account sign in method is converted to Google. It only happens with Google and

Google OAuth 2.0 - Incremental authorization with offline access

狂风中的少年 提交于 2019-12-13 18:07:11
问题 I'm trying to implement incremental authorization with Google Oauth2 in my application. At first, when users sign in, the application is requesting some scopes and offline access. I'm generating and storing the refreshToken in my database so I can refresh access tokens to make API calls when needed. Now I'm going to implement a new functionality that will request a new scope, but I would like to ask for this scope only if users try to use this new functionality. The problem I'm facing is that

Google Authentication fails with AWS Cognito Identity Pool on Android

牧云@^-^@ 提交于 2019-12-13 17:51:31
问题 I get an NotAuthorizedException:Token is not from a supported provider of this identity pool when I call Amazon.CognitoIdentity.AmazonCognitoIdentityClient.GetIdAsync() I do not understand why, the token was obtained by authenticating with GoogleSignInApi , and the AWS Identity Pool is configured to federate to the Google authentication provider with the same "Google WebApp Client ID" used to authenticate on the Android device. Also I've tried to obtain the Google token using 2 different ways