タイムラインを取得するための Twitter プログラムを作成しようとしています。Abraham Williams の認証コードを使用しています
表示されるエラー Notice: Undefined property: stdClass::$screen_name in G:\xampp\htdocs\fake.php on line 12 @ Connected as @ Notice: Trying to get property of non-object in G:\xampp\htdocs\fake. 20 行目の php ツイート:
コード
<?php
// Read in our saved access token/secret
$accessToken =file_get_contents("twitteroauth/access_token.txt");
$accessTokenSecret = file_get_contents("twitteroauth/access_token_secret.txt");
// Create our twitter API object
require_once("twitteroauth/twitteroauth.php");
$oauth = new TwitterOAuth('mykey', 'secret key', $accessToken, $accessTokenSecret);
// Send an API request to verify credentials
$credentials = $oauth->get("account/verify_credentials");
echo "Connected as @" . $credentials->screen_name;
// Post our new "hello world" status
$home_timeline = $oauth->get('statuses/home_timeline',array('count' => 40));
// how do i get the information out of home_timeline
foreach ($home_timeline as $status) {
echo "Tweet: $status->text<br />\n";
}
?>