Socket
Socket
Sign inDemoInstall

gatsby-source-behance-images

Package Overview
Dependencies
8
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gatsby-source-behance-images

Gatsby source plugin for loading information from Behance


Version published
Maintainers
1
Created

Readme

Source

Gatsby-source-facebook-graphql

A Gatsby source plugin for sourcing data into your Gatsby application from Facebooks graph API.

Install

npm install --save gatsby-source-facebook

or

yarn add gatsby-source-facebook-graphql

How to use:

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-facebook-graphql`,
      options: {
        // Facebook account or page ID
        pageId: 1690402924350633,
        params: {
          fields: [
            'about',
            'bio',
            'category',
            'category_list',
            'company_overview',
            'features',
            'hours',
            'phone',
            'location',
            'username',
            'description',
            'products',
            'photos{webp_images}',
            'rating_count',
            'place_type',
          ],
        },
        // Access Token from facebook
        accessToken: process.env.GATSBY_FACEBOOK_GRAPH_TOKEN,
      },
    },
  ],
}

Keywords

FAQs

Last updated on 25 Jul 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc