Admob
Setting Up AdMob Integration
Step 1. Publisher ID in AdMob
- Retrieve the Publisher ID:
- Click on the Google Account button in the top-right corner of your AdMob account.
- Copy the Publisher ID displayed below your account information.
Step 2. Create a Project in Google Cloud Console
- Go to the Google Cloud Console.
- Click on the APIs & Services button.
- From the API Project dropdown at the top-left, select:
- Create a project for a new project, or
- An existing project you’ve already created for this app.
- If creating a new project:
- Provide a Project Name in the dialog box.
- Click Create.
- In the left sidebar, select OAuth consent screen.
- Provide an Application Name and other required details.
- Click Save.
- In the left sidebar, select Dashboard.
- Click Enable APIs and Services.
- Find and Enable the AdSense API.
- In the left sidebar, select the Credentials tab.
- Click the Create Credentials dropdown.
- Select OAuth Client ID.
- Select Web Application as the application type.
- Provide a name for your app.
- Under Authorized Redirect URIs, add:
https://developers.google.com/oauthplayground
- Click Create. After creating the OAuth Client ID, you will be presented with:
- Client ID
- Client Secret
- Save these credentials for integration purposes.
Step 3. Retrieve Refresh Token
- Go to the OAuth 2.0 Playground.
- Click the Settings icon in the upper-right corner.
- In the Force prompt dropdown, select No.
- Check the box for Use your own OAuth credentials.
- Enter your Client ID and Client Secret.
Step 4. Select and Authorize APIs
- In OAuth 2.0 Playground, go to Select & Authorize APIs and check the following APIs:
- AdSense Management API:
https://www.googleapis.com/auth/adsense
https://www.googleapis.com/auth/adsense.readonly
- AdMob API:
https://www.googleapis.com/auth/admob.readonly
https://www.googleapis.com/auth/admob.report
- AdSense Management API:
- Click Authorize APIs to proceed.
- Review the permissions requested and grant your project access to the AdSense data.
Step 5. Exchange Authorization Code for Tokens
- You will receive the Authorization Code in OAuth 2.0 Playground and can then click the Exchange authorization code for tokens button. This will provide you with both a Refresh Token and an Access Token.