Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93133215
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
Tue, Nov 26, 11:12
Size
405 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 11:12 (2 d)
Engine
blob
Format
Raw Data
Handle
22581641
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