shotishu / grails-spring-social-twitter

Spring Social Twitter Grails Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spring Social Twitter Grails Plugin

Getting Started

Installation

You can install this plugin in one of two ways:

  1. Install the plugin by running the install-plugin command. In addition to installing the spring-social-twitter plugin, you need to install both the spring-social-core plugin

    grails install-plugin spring-social-core grails install-plugin spring-social-twitter

OR

  1. Add compile ":spring-social-core:0.1.31" and compile ":spring-social-twitter:0.1.31" to your BuildConfig.groovy file's plugins bloc in the conf directory. You probably have to change the version value to match this plugin's current version.

    plugins { compile ":spring-social-core:0.1.31" compile ":spring-social-twitter:0.1.31" }

Configuration

Add your Twitter public key and secret to the Config.groovy file in the conf directory.

grails.plugins.springsocial.twitter.consumerKey='twitterconsumerkey'
grails.plugins.springsocial.twitter.consumerSecret='twittersecret'

About

Spring Social Twitter Grails Plugin

License:Other