Created
February 4, 2015 12:41
-
-
Save vastus/89a9f5986c225152b793 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'koala' | |
| require 'awesome_print' | |
| g = Koala::Facebook::API.new(ENV["ACCESS_TOKEN"]) | |
| page = g.get_object("#{ENV["PAGE_ID"]}?fields=access_token") | |
| raise "No page access_token" if !page["access_token"] || !page["id"] | |
| page_graph = Koala::Facebook::API.new(page["access_token"]) | |
| payload = { | |
| message: "Posting w/ Koala" | |
| } | |
| page_graph.put_connections(page["id"], "feed", payload) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment