
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@blackbox-vision/gatsby-source-google-analytics-api-most-read-posts
Advanced tools
Pull your most read posts from google analytics
Get your most read Posts from Google Analytics Reporting API.
You can install this library via NPM or YARN.
npm i @blackbox-vision/gatsby-source-google-analytics-api-most-read-posts
yarn add @blackbox-vision/gatsby-source-google-analytics-api-most-read-posts
In your gatsby-config.js:
{
resolve: `@blackbox-vision/gatsby-source-google-analytics-api-most-read-posts`,
options: {
viewId: `115350264`,
email: `example@domain.com`,
secretKey: `yourSecretAPIKey`,
maxResults: 10,
filters: 'ga:pagePath!@/tag/;ga:pagePath!@/page/;ga:pagePath!=/;ga:pageTitle!=(not set);ga:pagePath!@&',
dates: {
from: 'today',
to: '2019-01-01'
}
}
}
| Properties | Types | Default Value | Description |
|---|---|---|---|
| viewId | string | none | Your viewId for your Google Analytics property. |
| string | none | The email generated from the Google API Console. | |
| secretKey | string | none | The PEM certificate generated from the Google API Console. |
| maxResults | number | 3 | Total results to get from the source. |
| filters | string | '' | Filters for data from Google Analytics. |
| dates.from | string | 'today' | A date formatted string or an string representing time relation. |
| dates.to | string | '2019-01-01' | A date formatted string or an string representing time relation. |
import React from 'react';
import { StaticQuery, graphql } from 'gatsby';
const gplQuery = graphql`
query GetAllMostReadPosts {
allMostReadPosts {
nodes {
totalViews
title
url
}
}
}
`;
export const MostReadPosts = () => (
<StaticQuery
query={gplQuery}
render={({ allMostReadPosts: { nodes: posts } }) =>
posts.map((post, idx) => (
<div key={idx}>
<a href={post.url}>
<h2>{post.title}</h2>
</a>
</div>
))
}
/>
);
MostReadPosts.displayName = 'MostReadPosts';
Please, open an issue following one of the issues templates. We will do our best to fix them.
If you want to contribute to this project see contributing for more information.
Distributed under the MIT license. See LICENSE for more information.
FAQs
Pull your most read posts from google analytics
We found that @blackbox-vision/gatsby-source-google-analytics-api-most-read-posts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.