Created
April 30, 2020 10:29
-
-
Save PhillJaySaw/31ff67f18b2f69a7359a8e10aa7f225c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
resolve: `gatsby-source-twitter`, | |
options: { | |
credentials: { | |
consumer_key: "INSERT_HERE_YOUR_CONSUMER_KEY", | |
consumer_secret: "INSERT_HERE_YOUR_CONSUMER_SECRET", | |
bearer_token: "INSERT_HERE_YOUR_BEARER_TOKEN", | |
}, | |
queries: { | |
nameofthequery: { | |
endpoint: "statuses/user_timeline", | |
params: { | |
screen_name: "gatsbyjs", | |
include_rts: false, | |
exclude_replies: true, | |
tweet_mode: "extended", | |
}, | |
}, | |
}, | |
}, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment