Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed spelling error in 'Twitter API' section #121

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion a2z/04_twitter_bot.md
Expand Up @@ -47,7 +47,7 @@ permalink: /a2z/twitter-bots/

<iframe width="525" height="300" src="https://www.youtube.com/embed/7-nX3YOC4OA?list=PLRqwX-V7Uu6atTSxoRiVnSuOn6JHnq2yV" frameborder="0" allowfullscreen></iframe>

Some APIs require a level of authentication that can't be done from client-side JavaScript. A prime example of this is the [Twitter API](https://dev.twitter.com/overview/documentation) which requires something known as [OAuth](https://dev.twitter.com/oauth/overview/faq). For basic API querying, you don't need to go to deep into the inner workings of authenticating. With node, you can pick one of many node packages that help you connet and query the API. The one I'm using for these examples is called [Twit](https://github.com/ttezel/twit).
Some APIs require a level of authentication that can't be done from client-side JavaScript. A prime example of this is the [Twitter API](https://dev.twitter.com/overview/documentation) which requires something known as [OAuth](https://dev.twitter.com/oauth/overview/faq). For basic API querying, you don't need to go to deep into the inner workings of authenticating. With node, you can pick one of many node packages that help you connect and query the API. The one I'm using for these examples is called [Twit](https://github.com/ttezel/twit).

Before you can use Twit, you need to follow a few steps.

Expand Down