

If you have departments like Sales or Operations, you can create groups here. You can assign system roles to certain users or create a new role here (they will appear under User Created Roles). You’ll be a Super Admin by default where you have complete access to everything. Just check that your credit card is correct and that you’ve chosen the most suitable plan for your business. You can rename a user as well as change his or her email address. Configure Settings At Google Workspace Admin ConsoleĪt Google Workspace Admin Console, you can edit settings for various things including Helps you manage access for mobile devicesĦ. You’ll also be guided through the various Google apps And you’ll be guided through the setup wizard. Log into Google Workspace Admin Console and click Setup at the top-right corner. So I recommend that you use this at the start just to get a basic idea of Google Workspace (formerly G Suite). But the setup wizard gives a concise overview of each setting and simplifies complex tasks. You can skip this and edit the settings directly. Choose Your Plan & Enter Billing DetailsĬhoose the most suitable plan for your business and enter your credit card details. It will take a few hours for this change in MX records to take effect.īut in the meantime, you can go back to Google Workspace (formerly G Suite) and check off the list of steps.Īlso, you can always contact the support team if you encounter any issues.Ĥ. Log Into Web Hosting Control Panel & Edit MX RecordsĪgain, log into your web hosting’s control panel.įor SiteGround, click on MX Entry under Mail section. To create your business email, you will need to point your web hosting to Google Workspace (formerly G Suite).
#G SUITE MX RECORDS WIZARD VERIFICATION#
Next, you’ll be guided through the domain verification step.

Just follow their instructions to set up your business account and add more users (if your business has many employees). When you sign up, Google will ask you a few basic questions like

Sign Up For Google Workspace (Formerly G Suite)įirst, you need to sign up for Google Workspace. Configure Settings At Google Workspace Admin Consoleġ. Sign Up For Google Workspace (Formerly G Suite) In Javascript:ĪWS.config.credentials = new AWS. You just need to peel the id_token off the URL and send it to Cognito, with your User Pool as the key in the Logins map. So if your redirect after successful authentication looks like this: To use implicit grant, change response_type=code to response_type=token in your Cognito UI URL.

It will return an access token and an id token directly to my front-end app. "Implicit grant" is what I'm using in my front-end application. This is a good choice if you have a back-end application and want refresh tokens.
#G SUITE MX RECORDS WIZARD CODE#
"Authorization code grant" will return an authorization code, which you then send to the oauth2/token endpoint to get an access_token, id_token, and refresh_token. You'll need to whitelist your Callback URL(s) (where Cognito will redirect back to), and make sure at least one OAuth Flow is allowed. You can check your domain by clicking "Domain name" in the left nav bar.Īpp Client Settings and OAuth Grant Typesįirst, check your App client settings. The idea is that you send your user to this URI, they do their business, and then they get redirected back to you with some sort of token(s) or code. The link you provided shows what your Cognito UI URL might look like: I also struggled with this I agree that the documentation is a little light.
