Reputation: 20429
I created new Google Play game and would like to change the email displayed on Google Consent Screen. Google Developers Console screen has a dropdown to choose email, but just one - admin's email - is here. I've added another user as the owner, but it is not appeared on the consent screen.
Upvotes: 76
Views: 32831
Reputation: 96
In 2024, this is an easy way to that:
Create a group at Google Groups, which will provide you with a group email address like this: [email protected]
.
Go to the IAM & Admin console and grant access to that group email:
[email protected]
and than you will be able to pick that email as a user support email.
Upvotes: 2
Reputation: 2506
Similar to @Krasimir's answer, you can also reuse an existing group as long as you're an "Owner" of that Google Group. In my case, I asked my IT Administrator to make me an owner of the group temporarily. I could then update the support email address in the console. After updating, the elevated permissions on the Google Group can be removed.
Upvotes: 0
Reputation: 13539
You can go here https://groups.google.com/ and create a group. Then simply refresh the consent page and you'll be able to pick the group. It is not your custom domain but it does the job I think.
Upvotes: 12
Reputation: 117261
You need a second email address then add that person / email as admin of the project. Then you will be able to add that email in the consent screen.
The Console has changed a lot since 2014, You need to add another user as the admin then you must login to console with that email and connect it. Then you will be able to change it.
A new user can be added via the Iam for your project.
Upvotes: 40
Reputation: 3610
There is a way to choose email without creating a new Gmail account and giving it Owner permissions. You can create a Group in GSuite with public email and then configure the group's forwarding to the email you want.
For example, you want to use [email protected]
. You can create a group [email protected]
which will forward everything to [email protected]
Then, you will be able to pick up [email protected]
in the dropdown.
Upvotes: 8
Reputation: 5276
While the above solutions work, I didn't want to make my [email protected] a Project > Owner
of my GCP project since multiple people can potentially access it.
The page (https://console.cloud.google.com/apis/credentials/consent/edit) says that the permission needed is clientauthconfig.clients.update
So I made a Custom Role containing every permission in that category:
clientauthconfig.brands.create
clientauthconfig.brands.delete
clientauthconfig.brands.get
clientauthconfig.brands.list
clientauthconfig.brands.update
clientauthconfig.clients.create
clientauthconfig.clients.createSecret
clientauthconfig.clients.delete
clientauthconfig.clients.get
clientauthconfig.clients.getWithSecret
clientauthconfig.clients.list
clientauthconfig.clients.listWithSecrets
clientauthconfig.clients.undelete
clientauthconfig.clients.update
and gave my support email that Custom Role + the role Project > Viewer
One note, these permissions are not finalized yet. The 'Create a Custom Role' page gives this warning:
Not recommended for production use
These permissions might be changed in backward-incompatible ways and are not recommended for production use. They are not subject to any SLA or deprecation policy.
Upvotes: 10
Reputation: 3879
If you want to change the email address that is displayed to the user you have to:
Add permission for the new email address to handle the project: Menu > IAM & Admin > IAM
, then click on the Add
button, enter the email address and select Role > Project > Owner
Accept the invitation from the new email address. Check your emails, click on the confirmation url and accept the terms and conditions.
Log in to the Google Developers Console using the NEW email address. Only the new email address can change the displayed email address. You don't have to log out or open an incognito window. You can simply add a new account by clicking on your account photo (upper-right corner) and then selecting the Add account
option.
Tip: When you visit the page, you will be logged in with your primary account by default. If you want to be logged in with the second account you just created, simply append &authuser=1
to the end of the url. If you have more than 2 accounts, you can use the value authuser=2 or 3 and so on. (The default value for your primary account is 0.)
Upvotes: 80