https://github.com/sescobb27/twitterstreamingexample
Example for the Golang Medellin Meetup using the twitter streaming API
https://github.com/sescobb27/twitterstreamingexample
Last synced: about 2 months ago
JSON representation
Example for the Golang Medellin Meetup using the twitter streaming API
- Host: GitHub
- URL: https://github.com/sescobb27/twitterstreamingexample
- Owner: sescobb27
- License: unlicense
- Created: 2014-10-13T04:13:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-15T01:51:24.000Z (almost 10 years ago)
- Last Synced: 2025-01-31T11:16:11.627Z (4 months ago)
- Language: Go
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TwitterStreamingExample
=======================Golang example for meetup with using the twitter streaming API and websockets
set your own environment
```bash
export TWITTER_CONSUMER_KEY="YOUR_CONSUMER_KEY"
export TWITTER_CONSUMER_SECRET="YOUR_CONSUMER_SECRET"
export TWITTER_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
export TWITTER_ACCESS_SECRET="YOUR_ACCESS_SECRET"
```
then```bash
# compile golang source code and build the binary executable named go-med
go build -o go-med -race golang_medellin.go
# then exec it!
./go-med -keywords="medellin"
```