-
Notifications
You must be signed in to change notification settings - Fork 429
/
TwitterAppOnly.gs
55 lines (49 loc) · 1.62 KB
/
TwitterAppOnly.gs
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
/**
* This sample demonstrates how to configure the library for the Twitter API,
* using the Application Only authorization flow:
* https://developer.twitter.com/en/docs/basics/authentication/overview/application-only
* To authorize access to a user's Twitter account you need to use the OAuth
* 1.0a library as shown here:
* https://developer.twitter.com/en/docs/basics/authentication/overview/application-only
*/
var CLIENT_ID = '...';
var CLIENT_SECRET = '...';
/**
* Authorizes and makes a request to the Twitter API.
*/
function run() {
var service = getService_();
if (service.hasAccess()) {
var url = 'https://api.twitter.com/1.1/users/show.json?screen_name=googleworkspace';
var response = UrlFetchApp.fetch(url, {
headers: {
Authorization: 'Bearer ' + service.getAccessToken()
}
});
var result = JSON.parse(response.getContentText());
Logger.log(JSON.stringify(result, null, 2));
} else {
Logger.log(service.getLastError());
}
}
/**
* Reset the authorization state, so that it can be re-tested.
*/
function reset() {
getService_().reset();
}
/**
* Configures the service.
*/
function getService_() {
return OAuth2.createService('Twitter App Only')
// Set the endpoint URLs.
.setTokenUrl('https://api.twitter.com/oauth2/token')
// Set the client ID and secret.
.setClientId(CLIENT_ID)
.setClientSecret(CLIENT_SECRET)
// Sets the custom grant type to use.
.setGrantType('client_credentials')
// Set the property store where authorized tokens should be persisted.
.setPropertyStore(PropertiesService.getUserProperties());
}