Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying to get property of non-object #1

Open
ronnyandre opened this issue Apr 3, 2010 · 0 comments
Open

Trying to get property of non-object #1

ronnyandre opened this issue Apr 3, 2010 · 0 comments

Comments

@ronnyandre
Copy link

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant