Skip to content

Instantly share code, notes, and snippets.

@nosequeldeebee
Created August 22, 2018 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosequeldeebee/b0ee9a11427c29f45818a34d6a2c191c to your computer and use it in GitHub Desktop.
Save nosequeldeebee/b0ee9a11427c29f45818a34d6a2c191c to your computer and use it in GitHub Desktop.
// Tweet is a collection of important info in each Tweet
type Tweet struct {
Date string `json:"created_at"`
Text string `json:"text"`
ID string `json:"id_str"`
}
var config *oauth1.Config
var token *oauth1.Token
// API page limit
const pages = 18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment