CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 10:29:19 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091215013106
location: https://web.archive.org/web/20091215013106/https://github.com/tcdent/php-twitter
server-timing: captures_list;dur=3.315395, exclusion.robots;dur=0.041485, exclusion.robots.policy;dur=0.021731, esindex;dur=0.023110, cdx.remote;dur=19.655745, LoadShardBlock;dur=191.879200, PetaboxLoader3.datanode;dur=56.391878, PetaboxLoader3.resolve;dur=55.306038
x-app-server: wwwb-app211
x-ts: 302
x-tr: 249
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=12
set-cookie: wb-p-SERVER=wwwb-app211; 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: Fri, 08 Aug 2025 10:29:20 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 15 Dec 2009 01:31:05 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "93269bde98f79334491a7db49d4e2a47"
x-archive-orig-x-runtime: 97ms
x-archive-orig-content-length: 20042
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: Tue, 15 Dec 2009 01:31:06 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 13 Nov 2009 18:41:03 GMT", ; rel="prev memento"; datetime="Fri, 13 Nov 2009 18:41:03 GMT", ; rel="memento"; datetime="Tue, 15 Dec 2009 01:31:06 GMT", ; rel="next memento"; datetime="Wed, 14 Apr 2010 01:55:55 GMT", ; rel="last memento"; datetime="Wed, 14 Apr 2010 01:55:55 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: 51_13_20091214232349_crawl100-c/51_13_20091215013029_crawl101.arc.gz
server-timing: captures_list;dur=0.632800, exclusion.robots;dur=0.022115, exclusion.robots.policy;dur=0.009891, esindex;dur=0.010407, cdx.remote;dur=42.816436, LoadShardBlock;dur=320.944399, PetaboxLoader3.datanode;dur=123.628087, PetaboxLoader3.resolve;dur=208.243167, load_resource;dur=163.925625
x-app-server: wwwb-app211
x-ts: 200
x-tr: 583
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
tcdent's php-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 minimalist PHP Twitter API. edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/tcdent/php-twitter.git
Give this clone URL to anyone.
git clone git://github.com/tcdent/php-twitter.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:tcdent/php-twitter.git
|
README
A minimalist PHP Twitter API. Inspired by Mike Verdone's <https://mike.verdone.ca> Python Twitter Tools Public (unauthenticated) methods: $twitter = new Twitter; // Get the public timeline. $entries = $twitter->statuses->public_timeline(); // Search. $twitter->search(array('q' => 'foo')); Protected (authenticated) methods: $twitter = new Twitter('username', 'password'); // Get page two of the user's followers. $entries = $twitter->statuses->followers(array('page' => 2)); // Send a direct message. $twitter->direct_messages->new(array('user' => 12345, 'text' => 'foo'));
This feature is coming soon. Sit tight!