iftttify
IFTTTify your Rails app, enables IFTTT to talk to our Rails apps using Wordpress XMLRPC protocol.
Usage
- Modify
routes.rb
post 'xmlrpc.php' => 'pages#ifttt_action'
- In your controller, add
iftttify :ifttt_action, with: :process_post
private
def process_post(post)
puts post
42 # This is sort of important, it would be the post ID
end
- (optional) authentication
iftttify :ifttt_action, auth: {username: "username", password: "password"}, with: :process_post