dev-master
9999999-devMagento module which adds the support of the Twitter API.
GPL-3.0
The Requires
Magento module which adds the support of the Twitter API.
This module, for now, allows you to send a tweet like this:, (*1)
$twitter = Mage::getSingleton('mbiz_twitter/api'); $twitter->tweet("Hello World!");
But before that, you have to configure the access tokens., (*2)
If you don't have a Twitter app you can create one in the apps center., (*3)
To configure it you have to set the following configuration:, (*4)
<?xml version="1.0" encoding="utf-8"?> <config> <!-- … --> <default> <mbiz_twitter> <general> <oauth_access_token/> <oauth_access_token_secret/> <consumer_key/> <consumer_secret/> </general> </mbiz_twitter> </default> </config>
You can of course set it by using a system.xml
file with your configuration
fields to manage it in admin panel., (*5)
Magento module which adds the support of the Twitter API.
GPL-3.0