Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115567756
twitter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jun 1, 20:04
Size
405 B
Mime Type
text/x-php
Expires
Tue, Jun 3, 20:04 (2 d)
Engine
blob
Format
Raw Data
Handle
26523687
Attached To
rPH Phabricator
twitter.php
View Options
<?php
require
(
__DIR__
.
'/../bootstrap.php'
);
$query
=
urlencode
(
'#PHP'
);
$response
=
\Httpful\Request
::
get
(
"http://search.twitter.com/search.json?q=$query"
)->
send
();
if
(!
$response
->
hasErrors
())
{
foreach
(
$response
->
body
->
results
as
$tweet
)
{
echo
"@{$tweet->from_user} tweets
\"
{$tweet->text}
\"\n
"
;
}
}
else
{
echo
"Uh oh. Twitter gave us the old {$response->code} status.
\n
"
;
}
Event Timeline
Log In to Comment