views:

21

answers:

2

Hi,

I am sending tweets to Twitter via Zend_Service_Twitter.

The tweets appear with a note "via API". I want to set the API Source with a different name, is there already a functionality within the Zend Framework to change it?

Or do I need to subclass to get this functionality?

Thanks!

+1  A: 

Please note, if you want to change the "Source" you have to use Oauth for authentication.

Twitter OAuth and Source

ArneRie
+1  A: 

Twitter is dropping the Source parameter since they're going to drop basic auth support in a few weeks as well, replacing it with OAuth which has the Source stuff built in. Like the commenter says, watch the Zend_Service_Twitter class in the coming weeks for a version that supports OAuth.

Justin