Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
twitter
/
twitteroauth
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Twitter OAuth in PHP</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <style type="text/css"> img {border-width: 0} * {font-family:'Lucida Grande', sans-serif;} </style> </head> <body> <div> <h2>Welcome to a Twitter OAuth PHP example.</h2> <p>This site is a basic showcase of Twitters OAuth authentication method. If you are having issues try <a href='./clearsessions.php'>clearing your session</a>.</p> <p> Links: <a href='http://github.com/abraham/twitteroauth'>Source Code</a> & <a href='http://wiki.github.com/abraham/twitteroauth/documentation'>Documentation</a> | Contact @<a href='http://twitter.com/abraham'>abraham</a> </p> <hr /> <?php if (isset($menu)) { ?> <?php echo $menu; ?> <?php } ?> </div> <?php if (isset($status_text)) { ?> <?php echo '<h3>'.$status_text.'</h3>'; ?> <?php } ?> <p> <pre> <?php print_r($content); ?> </pre> </p> </body> </html>