惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Google OAuth 2.0 vs Service account: Which one should you...
Sasireka Bal · 2026-05-11 · via DEV Community

Authentication plays a crucial role in fetching real data from Google platforms like Gmail, Google Ads, Google Analytics, etc. When you try to authenticate your account to fetch data via API, you need to follow some steps. But there are two methods you can use. Both methods do the same job in authentication.

In this guide, we’ll see about two methods and how to generate an access token using them.

Tow methods

  1. OAuth client 2.0

  2. Service account

Feature Client 2.0 Service Account
Acts as Behalf of a user application itself
Requires user login? Yes ✔ No ❌
Best for User facing apps server to server or automation apps
Credentials Clinet ID and Client secret needed JSON key file
Token type Access token and refresh token Only access token
Token expiry Expire after every hour Don’t expire untill revoke

Prerequesites

  • Google Cloud console account with the email ID https://cloud.google.com/
  • Appropriate Google product login. For example, if you are going to access Google Analytics data, then you should properly connect your site with a GA4 account.

Method 1: generate client ID and secret using client OAuth 2.0

You can use this method when your app acts on behalf of a user. Imagine it works when a user clicks ‘Connect Gmail’ and your app gets permission to read and write. These permissions based on the scopes you used while authenticating.

How it works

  1. User clicks a button ‘Connect Google Analytics’

  2. Google shows a consent screen page

  3. User clicks ‘Continue’ to give permissions, and it gives an authorization code

  4. Exchange within a minute to generate an access token and a refresh token

  5. Using the access token, the server calls the API to get data on behalf of the user.

How to generate client ID and secret

  1. Open the Google Cloud console project or create a new project. If you have a doubt just refer to this blog https://agentzee.ai/blogs/how-to-access-google-analytics-dashboard-data-via-api-with-an-access-token.

  2. Search for “Google OAuth Platform,” select it, and click “Clients.”

  3. If you created a new project, then it goes to the project configuration page. Clearly fill in all the details. If you choose an existing project, then create a new client directly

  4. After creating a client, it shows the JSON file to download. Download it and save it somewhere.

Client ID and client secret JSON

generate an access token

Let’s see it in Python code. This uses Google’s authentication. So, it shows a consent screen with an authorization code. Here, let's see how to generate an access token for Google Analytics.

Step 1: Generate an authorization code

For this, you need some Python libraries called google-auth, google-auth-oauthlib, and google-auth-httplib2

from google_auth_oauthlib.flow import Flow
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
def get_auth_url():
    flow = Flow.from_client_secrets_file(
        "Google_Analytics_Cred.json",
        scopes=["https://www.googleapis.com/auth/analytics.readonly"],
        redirect_uri="YOUR_REDIRECT_URI"
    )
    auth_url, _ = flow.authorization_url(prompt="consent", access_type="offline")
    return auth_url

Enter fullscreen mode Exit fullscreen mode

Here, replace your redirect URI and place your downloaded JSON file path. If the JSON file is in another path, just mention the full file path. Then you will get a URL and open it in a browser. Select an account associated with Google Analytics. It will redirect to the URL you specify in the client, and you can find the code in the browser URL.

authorization code generation

Step 2: Exchange the authorization code for an access token

Here, replace your code.

from google_auth_oauthlib.flow import Flow
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
flow = Flow.from_client_secrets_file(
        "Google_Analytics_Cred.json",
        scopes=["https://www.googleapis.com/auth/analytics.readonly"],
        redirect_uri="YOUR_REDIRECT_URI"
    )
flow.fetch_token(code=auth_code)
creds = flow.credentials
print(creds) //print(creds.token) print(creds.refresh_token)

Enter fullscreen mode Exit fullscreen mode

From this, you can get your access token.

Method 2: Access token via Service account

You can use a service account when your app doesn’t need user interaction. It is actually a server-to-server, with no user involvement. It represents an application, not a user.

How it works

  1. Open Google Cloud project (You can use the same project you created for OAuth 2.0)

  2. Create a service account and download the JSON key file.

  3. Google verifies the signature using your public key in the JSON file and returns an access token.

  4. Call Google APIs directly

Generate JSON key file

Here, we use Python code to generate an access token with the JSON key file.

  1. Open Google Cloud Console. Open an existing project or create a new one.

  2. Search for “I AM Admin” and select “Service Account” from the side menu.

  3. Click the “Create new Service account” button

  4. Fill all the necessary fields. Your service account has been created. Then click the created account.

    Service account created

  5. Click keys → Add key → Create new key → Choose JSON type for ease access → Click create.

After this, your private key file will be directly downloaded to your system. This is never expiry until you manually delete it.

Key file generation

Generating an access token

Store your downloaded private JSON key file in your code folder. Here’s the Python code

import google.auth
import google.auth.transport.requests
from google.oauth2 import service_account

# Path to your service account JSON key file
SERVICE_ACCOUNT_FILE = "service-account-key.json"

# Define the scopes your app needs
SCOPES = ["https://www.googleapis.com/auth/analytics.readonly"]

# Load credentials from the key file
credentials = service_account.Credentials.from_service_account_file(
    SERVICE_ACCOUNT_FILE,
    scopes=SCOPES
)

# Request the access token
request = google.auth.transport.requests.Request()
credentials.refresh(request)

# ✅ Your access token
print("Access Token:", credentials.token)
print("Expires At:", credentials.expiry)

Enter fullscreen mode Exit fullscreen mode

Replace your credential file path. From this code, you can access an access token. Using that access token you can directly pull out the data from the Google Analytics dashboard, and it never expires.

Both methods look similar, but you should understand where to use which method. It makes your way clear. Both access tokens work to fetch data. If you have any doubts or suggestions, post them in the comment section.