Twitter OAuth1 example
@dylburger
code:
data:privatelast updated:4 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 1,000,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
nodejs
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
}
36
const OAuth = require('oauth-1.0a')
const crypto = require('crypto')

// An object with two properties: url and method
const requestData = { 
  url: "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=foo", // your URL here
  method: "GET" // your method here
}

const consumer = {
  key: your_consumer_key, // fill this in
  secret: your_consumer_secret_key, // fill this in
}
const token = {
  key: your_access_token, // fill this in
  secret: your_access_token_secret, // fill this in
}

const oauth = OAuth({
  consumer,
  signature_method: 'HMAC-SHA1',
  hash_function(base_string, key) {
    return crypto
      .createHmac('sha1', key)
      .update(base_string)
      .digest('base64')
  },
})

if (!requestData.method) requestData.method = "GET"

// this.headers.Authorization should contain the signed 
// Authorization header you can send in the OAuth1 request
this.header = oauth.toHeader(oauth.authorize(requestData, token))