I'm trying to get a users home_timeline:
<?php
require_once('tmhoauth/tmhOAuth.php');
$connection = new tmhOAuth(array(
'consumer_key' => '*******',
'consumer_secret' => '*******',
'user_token' => '********',
'user_secret' => '*********',
));
$connection -> request('GET', $connection -> url('1/statuses/home_timeline.json?include_entities=true'));
echo($connection -> response['code']);
?>
And it returns error code 200.
Any ideas?
200is an error code? what is the expected response code/what does the rest of response contain? – wehal3001 Jul 29 '12 at 23:42