codeigniter-twitter icon indicating copy to clipboard operation
codeigniter-twitter copied to clipboard

Trying to get property of non-object

Open ronnyandre opened this issue 15 years ago • 0 comments

I've tried using the user_timeline() function with a Twitter account that has two updates. It fetches the updates, but it throws an error:

A PHP Error was encountered
Severity: Warning
Message: Attempt to assign property of non-object
Filename: libraries/Twitter.php
Line Number: 99

The line number 99 in Twitter.php is the following:

$this->user_timeline->text = $this->_parse_message($this->user_timeline->text);

This is my controller:

$this->twitter->auth('oslogeeks', 'secret');
$data['timeline'] = $this->twitter->user_timeline('oslogeeks');

And this is the view:

<ul>
    <?php foreach ($timeline as $tweet): ?>
    <li><?php echo $tweet->text ?></li>
    <?php endforeach; ?>
</ul>

ronnyandre avatar Apr 03 '10 10:04 ronnyandre