CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 31 Aug 2025 22:25:51 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091118155239
location: https://web.archive.org/web/20091118155239/https://github.com/jb55/go-twitter
server-timing: captures_list;dur=1.062796, exclusion.robots;dur=0.040248, exclusion.robots.policy;dur=0.024065, esindex;dur=0.015568, cdx.remote;dur=98.265674, LoadShardBlock;dur=205.396842, PetaboxLoader3.datanode;dur=79.755489, PetaboxLoader3.resolve;dur=59.288729
x-app-server: wwwb-app28
x-ts: 302
x-tr: 346
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 31 Aug 2025 22:25:52 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 18 Nov 2009 15:52:39 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "e982a1adcb010f2128457bcddf87a119"
x-archive-orig-x-runtime: 179ms
x-archive-orig-content-length: 30256
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 18 Nov 2009 15:52:39 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 18 Nov 2009 15:52:39 GMT", ; rel="memento"; datetime="Wed, 18 Nov 2009 15:52:39 GMT", ; rel="next memento"; datetime="Tue, 13 Apr 2010 21:53:28 GMT", ; rel="last memento"; datetime="Wed, 15 Jan 2025 01:46:35 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_12_20091118122927_crawl100-c/52_12_20091118155107_crawl101.arc.gz
server-timing: captures_list;dur=0.905797, exclusion.robots;dur=0.040602, exclusion.robots.policy;dur=0.025135, esindex;dur=0.013530, cdx.remote;dur=37.801214, LoadShardBlock;dur=708.069302, PetaboxLoader3.resolve;dur=355.127435, PetaboxLoader3.datanode;dur=248.305816, load_resource;dur=164.156549
x-app-server: wwwb-app28
x-ts: 200
x-tr: 1052
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
jb55's go-twitter at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | A Go Twitter library edit |
Homepage: | https://jb55.github.com/go-twitter edit |
Public Clone URL: |
git://github.com/jb55/go-twitter.git
Give this clone URL to anyone.
git clone git://github.com/jb55/go-twitter.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:jb55/go-twitter.git
|

Bill Casarin (author)
Tue Nov 17 17:31:27 -0800 2009
README.rst
go-twitter
go-twitter is a Twitter library package for Go. The interface is similar to python-twitter.
Installation
- Make sure you have Go installed and your environment is set up correctly: $GOROOT, $GOARCH, $GOBIN, etc.
- Checkout the code from the repository or extract the source code.
- cd go-twitter && make install
Quick Start
import "twitter" // Prints the public timeline func main() { api := twitter.NewApi(); pubTimeline := <-api.GetPublicTimeline(); for i, status := range pubTimeline { fmt.Printf("#%d %s: %s\n", i, status.GetUser().GetScreenName(), status.GetText()); } }
Documentation
doc/ - godoc generated files, site coming soon
This feature is coming soon. Sit tight!