views:

19

answers:

1

$twitter = new Zend_Service_Twitter('myusername', 'mypassword'); $response = $twitter-> ?????????;

Naybosy cna elp

A: 

Twitter have disabled basic authentication and Zend Framework updated their library accordingly to use OAuth.

You'll need to consult the current documentation for Zend_Service_Twitter and make changes to your code.

David Caunt