Questions tagged [google-account]

A Google Account is a user account that provides access to Google-owned services.

443 questions
2
votes
2 answers

How to NOT add Google account to Android phone while using Google Sign-In Button

I'm integrating Google-Sign button in my android app. However, whenever another user logs in with his credentials, the Google account is being added to Settings > Users & Accounts section on the phone. This should not happen. For example, assume…
2
votes
0 answers

Why some Google accounts are told Chromium is an insecure browser on log in?

We have a near-stock Chromium 76 running on Android 7 on our custom device. Since December, we've had sporadic but increasingly common reports that users are not able to sign-in to Google properties, as they get a message about using an insecure…
Dave M
  • 21
  • 1
2
votes
0 answers

Logging in to Google with Playwright in a CI Environment

I've got a playwright / mocha script which logs me in to Google. This code works when run on my local machine, however fails when run in gitlab-ci. e2e.spec.js describe('Staging', async function() { before(async function() { await…
Benny Powers
  • 5,398
  • 4
  • 32
  • 55
2
votes
1 answer

Do the User Id properties of email aliases remain the same in Google Apps / App Engine?

It's possible to have nicknames / aliases for your email accounts in Google Apps - so if I have email ID a1@domain.com with nicknames a2 and a3, will the user_id property on App Engine differ when I use these different aliases to login?
Sudhir Jonathan
  • 16,998
  • 13
  • 66
  • 90
2
votes
0 answers

Can I get a Firebase/Google UID on an Android device without user interaction?

I am in the process of migrating two separate free/paid apps to an In-App-Purchase based payment model. I have 4000 existing paid users, and so I would need a way to know if they already bought the old paid app, and if so they should have access to…
Magnus
  • 17,157
  • 19
  • 104
  • 189
2
votes
1 answer

Storing data on a user's Google's account

Is there any way in which a PHP powered web app can store data in a user's Google account? (after requesting permission from the user) Basically I want to stay away from storing private user data on my server. App will be handling mostly documents /…
lostsource
  • 21,070
  • 8
  • 66
  • 88
2
votes
1 answer

Does GAE/Java offer any brute force protection if you don't use Google Accounts for authentication?

I'm making a Java web app on Google App Engine. Do I need to roll my own brute force protection for my login system - since I'm not using Google Accounts for the user accounts in my system? Or are there are built-in features that make it easier or…
2
votes
1 answer

Pass multiple domains to restrict - in "hd" parameter in Google OAuth

I'm using Google OAuth for account linking. I'm setting hd parameter to restrict particular domains (Ref), and it's working fine. but my question is can I restrict more than one domains? like currently I'm setting hd as "hd":…
Jay Patel
  • 2,341
  • 2
  • 22
  • 43
2
votes
1 answer

Actions on Google Account Linking - Google accounts cannot be used as Auth endpoint urls per our Account Linking policy

I'm trying to setup account linking in dialogflow agent using this documentation, I've created my credentials from the Google cloud platform. when I'm trying to put that credentials data to Actions on Google console, it gives an error as shown in…
Jay Patel
  • 2,341
  • 2
  • 22
  • 43
2
votes
3 answers

Why are none of my Google Actions Alpha releases appearing in the Google Assitant store?

In my developer account, I can succesfully test the app using the simulator. I also sucessfully deployed an Alpha version, and waited 24 hours. However the opt-in link doesn't work. Every time I navigate to it, I see: We can't find what you're…
kidcapital
  • 5,064
  • 9
  • 46
  • 68
2
votes
2 answers

How can I unlock Google account captcha permanently to send emails in my heroku app?

I have a rails app deployed in a free heroku plan and I'm using my Google account to send emails and I can only do this if the captcha is unlocked, so I go to my account settings and allow access. But after a while, I have to do it again, otherwise…
Éowyn
  • 187
  • 3
  • 17
2
votes
1 answer

Is it possible to setup sign in to Azure AD by google account?

In my organization I have Azure AD sync to organization AD. Is it possible to add authentication by Google account for external users? Azure AD is using by mobile app to authenticate in moblie backend. (I know about https://auth0.com/lock, but…
2
votes
0 answers

Redirect to Google account picker in Appengine

In an AppEngine app, if the user tries to login with a wrong Google account (we check if he's in the database), we'd like to provide a URL so he can log in with another Google account. Without being loged out with the first one (if he has gMail open…
Valentin Coudert
  • 1,759
  • 3
  • 19
  • 44
2
votes
2 answers

React Native Google Authentication

How can i enable logging in (react-native init) application with google account?
neman
  • 196
  • 1
  • 10
2
votes
3 answers

How to log in to Chrome with Selenium?

I am testing a Chrome extension which requires the user to be logged in to use, but I cannot figure out how to login with my test account. I have tried logging in to accounts.google.com but this is apparently insufficient; as far as the chrome APIs…