monsieurbiz / Mbiz_Twitter

Magento 1 module which allows you to use the Twitter API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mbiz_Twitter

This module, for now, allows you to send a tweet like this:

$twitter = Mage::getSingleton('mbiz_twitter/api');
$twitter->tweet("Hello World!");

But before that, you have to configure the access tokens.

If you don't have a Twitter app you can create one in the apps center.

Configuration

To configure it you have to set the following configuration:

<?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.

About

Magento 1 module which allows you to use the Twitter API.

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%