Questions tagged [google-account]

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

443 questions
6
votes
1 answer

Android - Google Sign-in getDisplayName() giving me E-Mail instead of Display name on new account add

I am trying to integrate Google Sign-in in my android app. Here is my code: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); PrefUtil.setTaskBarColored(this, R.color.treasure_black); …
Ayush Gupta
  • 8,716
  • 8
  • 59
  • 92
6
votes
2 answers

How to filter/remove Google Email ALIAS with PHP?

I can create the unlimited email alias in Google Accounts (Gmail), ref: http://www.gizmodo.com.au/2014/09/how-to-use-the-infinite-number-of-email-addresses-gmail-gives-you/ But I need to filter email address to avoid that a user uses the same…
Jonas WebDev
  • 363
  • 4
  • 12
6
votes
1 answer

Is Google Account user_id() unique for all time? (i.e. never re-used)

Is user_id() unique for all time? That is, even if a Google Account is deleted, the user_id() of that deleted account will never appear again in any other user_id, right? We are clarifying our understanding of this statement from…
Carter Maslan
  • 493
  • 4
  • 11
6
votes
2 answers

Specifying which Google account to use when executing a Google Apps Script webapp request

I have a browser extension which is scraping the threadId from the URL when the user is reading an email in Gmail, and is using this threadId to fetch circumstantial data using the Google Apps Script API. The extension do however not know which of…
Lars Johnsen
  • 81
  • 1
  • 6
5
votes
2 answers

Google Multiple Sign-ins - Is there a way to specify the account in the URL?

We recently switched our team to Google Apps and with that, everyone got a Google Apps account . However, for those of us with a GMail account as well, this makes it so that bringing up Gmail in your browser opens up either your personal account or…
lfboulanger
  • 2,140
  • 2
  • 17
  • 20
5
votes
2 answers

Google Account Required Syncability Feature

I was looking at the code for JumpNotes and there was one thing I just could not figure out. JumpNotes: AccountList.java public static final String[] GOOGLE_ACCOUNT_REQUIRED_SYNCABILITY_FEATURES = new String[]{ "service_ah" }; This is…
rahul
  • 2,269
  • 3
  • 28
  • 31
5
votes
1 answer

How to disable new Chrome Profiles for separate google accounts feature and go back to single Chrome instance?

I recently made the mistake of clicking "try" on a chrome prompt to open separate google accounts in separate profiles and i deeply regret that mistake and want to switch back. it used to just switch the main chrome window. in the other profiles i…
Joshua Jarman
  • 101
  • 1
  • 1
  • 6
5
votes
2 answers

How to give access to a different google user and test my Dialogflow app?

How to let a different google user use my dialogflow app? I tried by adding email id of the user (email added as PROJECT Viewer under IAM in Google Cloud Platform Console).However when I went to test with this user on google assistant and said 'talk…
Sagnik
  • 213
  • 5
  • 11
5
votes
1 answer

How do I NOT require user's email when using Rails Omniauth gem and Google OpenID

My current /config/initializers/omniauth.rb file contains: Rails.application.config.middleware.use OmniAuth::Builder do provider :open_id, nil, :name => 'google', :identifier => 'https://www.google.com/accounts/o8/id' end When I login via Google…
weotch
  • 5,788
  • 6
  • 35
  • 42
5
votes
0 answers

Is there an Apple Visits Location Service equivalent?

I'm looking to create an app for Android that checks a users location history to draw some conclusions of their daily life and identify behavioural patterns. The Visits Location Service for IOS seems perfect for this kind of work as it logs…
5
votes
0 answers

Google+ Sign-In: Cannot choose secondary YouTube accounts for authorized requests

In order to make a request to Youtube Data API's youtube.channels.list with the mine parameter set to true, I have to make a properly authorized request, i.e. I need to provide a token that is bound to that channel. In order to get that token, I use…
5
votes
3 answers

How to select account in Google App Scripts for users with multiple accounts?

For users that are logged into multiple accounts, how can a script let the user pick an account? For example, Gmail, Google Drive, etc. provide a way for the user to select which account to use with a selectable option on the top-right of the…
Oscar Wahltinez
  • 1,155
  • 3
  • 12
  • 24
5
votes
3 answers

Get user name, avatar from google account

I'm developing an module that use GoogleAccountCredential to login, upload & download a file to GoogleDrive. I want to get user first, last name and avatar of google account for display on my login feature. I've try …
Tai Dao
  • 3,407
  • 7
  • 31
  • 54
4
votes
2 answers

Use the Google account sign in authentication for apps in Android

I am creating an app which needs sign-in. On the desktop (full) website, he can sign-in with the existing Google account. On mobiles, how can I make the user sign-in with the Google account using on his android phone. Will Android allow me to use…
dcanh121
  • 4,665
  • 11
  • 37
  • 84
4
votes
0 answers

Get all accounts signed in on chrome browser from chrome extension

I am building a chrome extension and I'm redirecting the user to a google meet page. Google uses something like ?authuser=X at the end of URL to determine the google account to use with a video call. I want to get the X for the specific email I have…