forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
63 lines (51 loc) · 1.33 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
57
58
59
60
61
62
63
package main
import (
"context"
"flag"
"fmt"
"log"
"net/http"
"time"
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")
flag.Parse()
client := &twitter.Client{
Authorizer: authorize{
Token: *token,
},
Client: http.DefaultClient,
Host: "https://api.twitter.com",
}
fmt.Println("Rate Limiting Example\n\n")
var rateLimit *twitter.RateLimit
rateLimit = callout(client)
fmt.Printf("Rate Limits: %v\n", *rateLimit)
rateLimit = callout(client)
fmt.Printf("Rate Limits: %v\n\n", *rateLimit)
fmt.Printf("Wait for reset %v\n", rateLimit.Reset.Time())
time.Sleep(time.Until(rateLimit.Reset.Time()))
fmt.Println("Rate Limits are reset")
rateLimit = callout(client)
fmt.Printf("Rate Limits: %v\n", *rateLimit)
}
func callout(client *twitter.Client) *twitter.RateLimit {
opts := twitter.ListUserMembersOpts{
MaxResults: 1,
}
listResponse, err := client.ListUserMembers(context.Background(), "84839422", opts)
if err != nil {
log.Panicf("list members error: %v", err)
}
return listResponse.RateLimit
}