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

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
L
LangChain Blog

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
I built a Node script that turns Google Search Console in...
GasPriceCheck · 2026-05-28 · via DEV Community

GSC's web UI is fine for occasional spelunking. It's slow for daily ops. Three pages of clicks to get to the same five queries I run every morning. The export is CSV. The date range picker is finicky.

So I built a Node script. About 150 lines. Three flags. Pulls everything I look at daily into the terminal in four seconds.

Here's what it does, what it doesn't do, and what I learned about the GSC API along the way.

What I check every morning

Five things, in order:

  1. Total clicks last 7 days vs prior 7 days
  2. Top 25 queries by clicks
  3. Top 25 pages by clicks
  4. Pages with the biggest position gain (rising stars)
  5. Pages with the biggest position loss (warning signs)

In GSC's web UI, that's five-plus clicks and a date range adjustment per check. In a terminal, it's node gsc-query.js --all and four seconds.

One-time setup

You need OAuth. The GSC API requires a refresh token, which you get by going through a one-time auth flow.

I wrote a separate script for this (gsc-auth.js) that handles the dance:

const { google } = require('googleapis');
const open = require('open');
const http = require('http');
const url = require('url');

const oauth2Client = new google.auth.OAuth2(
  process.env.GSC_CLIENT_ID,
  process.env.GSC_CLIENT_SECRET,
  'http://localhost:3737/oauth-callback'
);

const authUrl = oauth2Client.generateAuthUrl({
  access_type: 'offline',
  scope: ['https://www.googleapis.com/auth/webmasters.readonly'],
});

console.log('Opening browser for authentication...');
open(authUrl);

http.createServer(async (req, res) => {
  const code = url.parse(req.url, true).query.code;
  if (code) {
    const { tokens } = await oauth2Client.getToken(code);
    console.log('Add this to your .env:');
    console.log('GSC_REFRESH_TOKEN=' + tokens.refresh_token);
    res.end('Auth complete. You can close this tab.');
  }
}).listen(3737);

Enter fullscreen mode Exit fullscreen mode

You run it once, click through the consent screen, and it prints your refresh token to the terminal. Save that to .env and you never run this script again.

A note on the OAuth flow: you'll need to set up an OAuth consent screen and a Web Application credential in the Google Cloud Console first. Add http://localhost:3737/oauth-callback as an authorized redirect URI. The whole setup takes about 10 minutes if you've never done it before, and it's the most annoying part of the project.

The "domain property vs URL prefix" gotcha

This one cost me 30 minutes when I was setting up. Sharing it so it costs you zero.

GSC has two ways to verify a property:

  • URL prefix (e.g., https://www.gas-price-check.com/): covers exactly that protocol + subdomain combo
  • Domain property (e.g., gas-price-check.com): covers all subdomains and protocols

The API treats these as different objects. To call data for a domain property, you use the format sc-domain:gas-price-check.com. Without the prefix, the API returns "site not found" with no hint about the format issue.

const siteUrl = 'sc-domain:gas-price-check.com'; // domain property
// not 'https://www.gas-price-check.com'
// not 'gas-price-check.com'

const res = await searchconsole.searchanalytics.query({
  siteUrl,
  requestBody: {
    startDate: '2026-04-22',
    endDate: '2026-04-29',
    dimensions: ['query'],
    rowLimit: 25,
  },
});

Enter fullscreen mode Exit fullscreen mode

If you set up your GSC property as a URL prefix, use the URL with the protocol. If you set up as a domain property, use the sc-domain: prefix. The error message gives you no hint about which format the API expects, so just remember the rule.

The query script

The actual gsc-query.js is straightforward. The interesting part is the flag handling:

const args = process.argv.slice(2);
const days = parseInt(args[args.indexOf('--days') + 1] || '7');
const showQueries = args.includes('--queries') || args.includes('--all');
const showPages = args.includes('--pages') || args.includes('--all');
const showRising = args.includes('--rising') || args.includes('--all');

Enter fullscreen mode Exit fullscreen mode

The actual API call is shaped like this:

async function fetchData(dimensions, days = 7) {
  const endDate = new Date();
  const startDate = new Date(endDate);
  startDate.setDate(startDate.getDate() - days);

  const res = await searchconsole.searchanalytics.query({
    siteUrl: process.env.GSC_SITE_URL,
    requestBody: {
      startDate: startDate.toISOString().split('T')[0],
      endDate: endDate.toISOString().split('T')[0],
      dimensions,
      rowLimit: 25,
    },
  });
  return res.data.rows || [];
}

Enter fullscreen mode Exit fullscreen mode

To get top queries: dimensions: ['query']. Top pages: dimensions: ['page']. To compute position changes over time: query twice with different date ranges and diff the results.

The five queries I run every morning

node gsc-query.js --days 7              # summary
node gsc-query.js --queries --days 28   # top queries last month
node gsc-query.js --pages --days 7      # top pages last week
node gsc-query.js --rising              # biggest position gains
node gsc-query.js --falling             # biggest position losses

Enter fullscreen mode Exit fullscreen mode

Output looks like:

Top 25 queries (last 28 days):
cheap gas near me                   142 clicks  3,201 impr  4.4% CTR  pos 8.2
gas prices houston                   87 clicks  1,892 impr  4.6% CTR  pos 6.1
77386 gas prices                     61 clicks    520 impr 11.7% CTR  pos 2.8
cheapest gas in austin               52 clicks  1,104 impr  4.7% CTR  pos 9.4
...

Enter fullscreen mode Exit fullscreen mode

Whole thing returns in four seconds. I run it while my coffee is brewing.

A few things I learned about the API

The free quota is generous. GSC API gives you 1,200 queries per minute and 30,000 per day. For a personal dashboard you'll never hit it.

The API returns the same data as the UI, but with no rounding. The web UI rounds clicks to the nearest digit and aggregates queries below 10 impressions into "..." rows. The API gives you actual numbers, including the long tail of queries with 1-3 impressions. For finding "rising star" queries, that long tail is gold. A query with 4 impressions today that had 0 impressions last week is a signal the web UI hides from you.

Rate limiting is per project, not per user. If you have multiple scripts hitting GSC, run them all from the same OAuth project to share the budget cleanly.

Caching helps a lot. I cache yesterday's data in a local JSON file and only re-fetch today's data on the second run of the day. Cuts run time roughly in half.

The searchAppearance dimension is underrated. Filter by searchAppearance: 'AMP_TOP_STORIES' or 'WEBLITE' to see how each rich-result type is performing separately. Most people never look at this.

What I haven't bothered to add

The script is about 150 lines. I've thought about adding:

  • A diff mode that flags queries that moved more than 5 positions week-over-week
  • An export-to-CSV flag for when I want to load data into a spreadsheet
  • A "branded queries only" filter
  • A daily Slack notifier so I don't have to run the script at all

Each is a 30-line addition. The fact that I haven't bothered is a sign the script does enough already. Premature feature creep is a real risk on personal tools.

What's the point

For a side project, GSC's web UI is fine. For a project where you check the same data daily, building a 150-line wrapper script will save you hours per month and surface signals the web UI hides. The whole thing took me about three hours to build, including the OAuth dance. It's paid that back in saved clicks within a week.

If you've built a similar GSC daily dashboard, what flags do you reach for? I'm curious what other people's morning checks look like. Mine is pretty narrow, but it's stable, and I've stopped opening the GSC web UI for daily ops entirely. Once a week I check the URL Inspection tool for specific pages in trouble. The rest is the script.