alanmonger/socialite
最新稳定版本:1.0.2
Composer 安装命令:
composer require alanmonger/socialite
包简介
Simple social media wrapper
README 文档
README
Socialite is a social media component which allows posting to popular social media platforms either independently or in bulk.
Single Post Use
###Posting to facebook
$facebook = Socialite\Service\ServiceFactory::facebook($appId, $appSecret); $message = new Socialite\Message(); $message->setBody("Test Post"); $facebook->post($message);
###Posting to Twitter
$twitter = ServiceFactory::twitter($consumerKey, $consumerSecret, $token, $tokenSecret); $message = new Socialite\Message(); $message->setBody("Test Post"); $twitter->post($message);
Bulk Post
$twitter = \Socialite\Service\ServiceFactory::twitter($consumerKey, $consumerSecret, $token, $tokenSecret); $facebook = \Socialite\Service\ServiceFactory::facebook($appId, $appSecret); $post = new \Socialite\Message(); $post->setBody("test"); $bulk = new \Socialite\Post\Bulk; $bulk ->addPost($twitter) ->addPost($facebook) ->send($post) ;
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-12