-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter_authorization.js
147 lines (134 loc) · 3.87 KB
/
twitter_authorization.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import got from "got";
import crypto from "crypto";
import OAuth from "oauth-1.0a";
import qs from "querystring";
import readline from "readline";
const readline = readline.createInterface({
input: process.stdin,
output: process.stdout
});
// The code below sets the consumer key and consumer secret from your environment variables
// To set environment variables on macOS or Linux, run the export commands below from the terminal:
// export CONSUMER_KEY='YOUR-KEY'
// export CONSUMER_SECRET='YOUR-SECRET'
const consumer_key = process.env.API_KEY;
const consumer_secret = process.env.SECRET_KEY;
// Be sure to add replace the text of the with the text you wish to Tweet.
// You can also add parameters to post polls, quote Tweets, Tweet with reply settings, and Tweet to Super Followers in addition to other features.
const data = {
text: "Hello world!"
};
const endpointURL = `https://api.twitter.com/2/tweets`;
// this example uses PIN-based OAuth to authorize the user
const requestTokenURL =
"https://api.twitter.com/oauth/request_token?oauth_callback=oob&x_auth_access_type=write";
const authorizeURL = new URL("https://api.twitter.com/oauth/authorize");
const accessTokenURL = "https://api.twitter.com/oauth/access_token";
const oauth = OAuth({
consumer: {
key: consumer_key,
secret: consumer_secret
},
signature_method: "HMAC-SHA1",
hash_function: (baseString, key) =>
crypto.createHmac("sha1", key).update(baseString).digest("base64")
});
async function input(prompt) {
return new Promise(async (resolve, reject) => {
readline.question(prompt, (out) => {
readline.close();
resolve(out);
});
});
}
async function requestToken() {
const authHeader = oauth.toHeader(
oauth.authorize({
url: requestTokenURL,
method: "POST"
})
);
const req = await got.post(requestTokenURL, {
headers: {
Authorization: authHeader["Authorization"]
}
});
if (req.body) {
return qs.parse(req.body);
} else {
throw new Error("Cannot get an OAuth request token");
}
}
async function accessToken({ oauth_token, oauth_token_secret }, verifier) {
const authHeader = oauth.toHeader(
oauth.authorize({
url: accessTokenURL,
method: "POST"
})
);
const path = `https://api.twitter.com/oauth/access_token?oauth_verifier=${verifier}&oauth_token=${oauth_token}`;
const req = await got.post(path, {
headers: {
Authorization: authHeader["Authorization"]
}
});
if (req.body) {
return qs.parse(req.body);
} else {
throw new Error("Cannot get an OAuth request token");
}
}
async function getRequest({ oauth_token, oauth_token_secret }) {
const token = {
key: oauth_token,
secret: oauth_token_secret
};
const authHeader = oauth.toHeader(
oauth.authorize(
{
url: endpointURL,
method: "POST"
},
token
)
);
const req = await got.post(endpointURL, {
json: data,
responseType: "json",
headers: {
Authorization: authHeader["Authorization"],
"user-agent": "v2CreateTweetJS",
"content-type": "application/json",
accept: "application/json"
}
});
if (req.body) {
return req.body;
} else {
throw new Error("Unsuccessful request");
}
}
(async () => {
try {
// Get request token
const oAuthRequestToken = await requestToken();
// Get authorization
authorizeURL.searchParams.append(
"oauth_token",
oAuthRequestToken.oauth_token
);
console.log("Please go here and authorize:", authorizeURL.href);
const pin = await input("Paste the PIN here: ");
// Get the access token
const oAuthAccessToken = await accessToken(oAuthRequestToken, pin.trim());
// Make the request
const response = await getRequest(oAuthAccessToken);
console.dir(response, {
depth: null
});
} catch (e) {
console.log(e);
process.exit(-1);
}
process.exit();
})();