google-authentication

AuthenticationManager.GetExternalLoginInfoAsync() on google aspnet mvc5 returns null

橙三吉。 提交于 2019-12-19 03:12:35
问题 I've developed an ASPNET MVC 5 application using default Visual Studio 2015 Template and Google authentication. All works fine in the development environment but on real the call after external authentication AuthenticationManager.GetExternalLoginInfoAsync() sometimes returns null. Normally it returns null on the central hours of the day (from 08:00 to 20:00) but I haven't found a pattern because sometimes works at that time. I've watched the developer console, but there are not a lot of

How to transfer the Firebase reference to another android activity

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-18 08:46:26
问题 We have 2 Android activities (activity A and activity B) Suppose that we instantiated a Firebase reference in activity A. Activity A also handles all user authentication (Facebook, Google, and email/password). Activity B, which is started from activity A using an Android intent, should use the Firebase reference to access some data on the Firebase servers. Now I was wondering what the best design is to send the Firebase ref from activity A to activity B. Bundle the Firebase reference with the

How to transfer the Firebase reference to another android activity

女生的网名这么多〃 提交于 2019-12-18 08:45:49
问题 We have 2 Android activities (activity A and activity B) Suppose that we instantiated a Firebase reference in activity A. Activity A also handles all user authentication (Facebook, Google, and email/password). Activity B, which is started from activity A using an Android intent, should use the Firebase reference to access some data on the Firebase servers. Now I was wondering what the best design is to send the Firebase ref from activity A to activity B. Bundle the Firebase reference with the

Authenticate Google Calendar on API.AI with Google Actions

可紊 提交于 2019-12-18 04:23:16
问题 I am writing an API.AI app with Google Actions (will run on google assistant and google home). The app should be able to read\add events to the user's google calendar account. The backend is Google Cloud Functions, and I enabled the Calendar API in the developers console. The flow the user should experience is something like this: User : "Hey Google, when was my last meeting with Anna?" Agent : "Your last meeting with Anna was two days ago" User : "Set a meeting with Anna for the tomorrow"

Subdomain in Google Console Redirect URIs

╄→尐↘猪︶ㄣ 提交于 2019-12-18 01:06:26
问题 I have an web application that uses google api (google drive). The application is used by many clients and every client has an subdomain to access the system. So the domain is appdomain.com And for users I have foo.appdomain.com , bar.appdomain.com , etc.appdomain.com . But in google console redirect URI I have to manually put the redirect urls, is there any way I can use wildcards to redirect to make google accept any of subdomains like: *.appdomain.com ? With this I can make the google

Authenticate service account without downloaded key on google app engine

∥☆過路亽.° 提交于 2019-12-17 21:17:09
问题 I am working on a product that is supposed to be installed in Google App Engine. In this I am using Service account for authenticating Gmail API, Drive API, Calendar API etc. Its working fine with downloaded P12 file as authentication. But as its product I don't want client to download and upload on app on every install. Can there be a way to authenticate it without privatekey file or using that API without service account. In below page its mentioned that there is System-managed key-pairs

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

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 Login Hitting Twice?

拜拜、爱过 提交于 2019-12-17 15:56:13
问题 I'm using Google Login via JS and it appears my code is getting data twice. I'm not sure why this is occurring. When I click my "Log In with Google" button, it spits out (console.log(result)) data for the user. THEN a prompt occurs asking me to choose an account of mine (I'm logged into several google accounts). When I click the account I'd like, the code then spits out that user data again. Why is this occurring? It's a problem because where I spit out the data, I'd like to make a ajax call

Google Home Authorization Code and Authentication with Google Account

两盒软妹~` 提交于 2019-12-17 04:35:14
问题 I am currently attempting to authenticate a Google account with a Google Home Action and retrieve the Authorization Code from the credentials. I do not want the access token, but the authorization code . I have looked at this post and discovered that Google has updated their policy and no longer allow their own OAuth endpoints to be used for the account linking authorization code flow: When implementing account linking using OAuth, you must own your OAuth endpoint That being said, What is the