Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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
The npm package @blackbox-vision/gatsby-source-google-analytics-api-most-read-posts receives a total of 1 weekly downloads. As such, @blackbox-vision/gatsby-source-google-analytics-api-most-read-posts popularity was classified as not popular.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.