forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
53 lines (44 loc) · 1.07 KB
/
main.go
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
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"log"
"net/http"
twitter "github.com/g8rswimmer/go-twitter/v2"
)
type authorize struct {
Token string
}
func (a authorize) Add(req *http.Request) {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", a.Token))
}
/**
In order to run, the user will need to provide the bearer token and the list of tweet ids.
**/
func main() {
token := flag.String("token", "", "twitter API token")
id := flag.String("id", "", "space id")
flag.Parse()
client := &twitter.Client{
Authorizer: authorize{
Token: *token,
},
Client: http.DefaultClient,
Host: "https://api.twitter.com",
}
opts := twitter.SpaceTweetsLookupOpts{
TweetFields: []twitter.TweetField{twitter.TweetFieldAuthorID},
}
fmt.Println("Callout to spaces tweets callout")
spaceResponse, err := client.SpaceTweetsLookup(context.Background(), *id, opts)
if err != nil {
log.Panicf("spaces tweets error: %v", err)
}
enc, err := json.MarshalIndent(spaceResponse, "", " ")
if err != nil {
log.Panic(err)
}
fmt.Println(string(enc))
}