This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

gatsby-source-feedbin-stars

1.0.0 • Public • Published

gatsby-source-feedbin-stars

Gatsby source plugin for getting starred items from Feedbin into your Gatsby application.

Install

yarn add gatsby-source-feedbin-stars

or with npm

npm install gatsby-source-feedbin-stars

How to use

In your gatsby-config.js

module.exports = {
  plugins: [
    {
      resolve: "gatsby-source-feedbin-stars",
      options: {
        feed_id: "5Euw2uq5T9oUL7tUbs0_2A",
      },
    },
  ]
}

Options

feed_id

Type: string
Required: true

In Feedbin general settings you'll need to turn on "Starred article feed", you'll then get a feed URL. It will look something like https://feedbin.com/starred/5Euw2uq5T9oUL7tUbs0_2A.xml, grab the string between "https://feedbin.com/starred/" and ".xml". In this case the feed_id is 5Euw2uq5T9oUL7tUbs0_2A.

How to query

query {
  allFeedbinStars {
    edges {
      node {
        title
        link
        description
        pubDate
        meta {
          host
          origin
          pathname
        }
      }
    }
  }
}

Package Sidebar

Install

npm i gatsby-source-feedbin-stars

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

2.14 kB

Total Files

4

Last publish

Collaborators

  • augustskare