forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (46 loc) · 1.26 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
54
55
56
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 id.
**/
func main() {
token := flag.String("token", "", "twitter API token")
id := flag.String("id", "", "user id")
flag.Parse()
client := &twitter.Client{
Authorizer: authorize{
Token: *token,
},
Client: http.DefaultClient,
Host: "https://api.twitter.com",
}
opts := twitter.TweetLikesLookupOpts{
Expansions: []twitter.Expansion{twitter.ExpansionPinnedTweetID},
TweetFields: []twitter.TweetField{twitter.TweetFieldCreatedAt, twitter.TweetFieldConversationID, twitter.TweetFieldAttachments},
}
fmt.Println("Callout to tweet like lookup callout")
tweetResponse, err := client.TweetLikesLookup(context.Background(), *id, opts)
if err != nil {
log.Panicf("tweet like lookup error: %v", err)
}
dictionaries := tweetResponse.Raw.UserDictionaries()
enc, err := json.MarshalIndent(dictionaries, "", " ")
if err != nil {
log.Panic(err)
}
fmt.Println(string(enc))
}