Project

social-bee

0.0
No commit activity in last 3 years
No release in over 3 years
Simple messaging wrapper for Facebook, Twitter, Vkontakte
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0
vk-ruby
>= 0
 Project Readme

#social-bee Simple messaging wrapper for Facebook, Twitter, Vkontakte

Installation

gem install social-bee

Usage Example

# message_controller.rb

class MessageController < ApplicationController
    def create
        SocialBee::Facebook.new( :config => "config/social/facebook.yml" ).say_public( 'Beep!', params[:user_token] )
    end
end
# config/social/facebook.yml

development:
    app_id: [YOUR APP ID]
    app_key: [YOUR APP KEY]
    callback_url: http://localhost:3000/
production:
    app_id: [YOUR APP ID]
    app_key: [YOUR APP KEY]
    callback_url: http://www.host.name