实例需求:我的magento站每天都会推出一款特价产品,同时我要将这款产品的相关信息自动发布到我的twitter上,以达到更多的
public function post_tweet($tweet_text) {
include_once('twitter/tmhOAuth.php');//tmhOAuth.php为twitter api,放到/lib/twitter下,下载地址请往下阅读
$connection = new tmhOAuth(array(
'consumer_key' => 'xrnOML0Zzk......',
'consumer_secret' => 'xFdUBpvnJ8LJHKsAx8n9GGSP......',
'user_token' => 'c9796070-ZwyrDLkswM40SsyX0WoXy......',
'user_secret' => 'vdLVaWiKcML9A9ruXGSArLHjMIn......',
));
// Make the API call
$connection->request('POST',
$connection->url('1/statuses/update'),
array('status' => $tweet_text));
return $connection->response['code'];
}
人关注到本产品和我的站点的效果。
首先在Helper/Data.php添加如下code:
上面consumer_key,user_token等参数,稍后会开一篇新的文章讲如何注册获取。
然后就可以使用上述function,对你的twitter进行同步更新,code如下:
[php] view plaincopy在CODE上查看代码片派生到我的代码片
$twitter = "产品相关信息,如名字,价钱等";
$return_code = Mage::helper('yourmode')->post_tweet($twitter);
登入你的twitter,看到信息已经发布上了吧!
tmhOAuth.php下载地址:http://download.csdn.net/download/shangxiaoxue/3972615
(责任编辑:最模板) |