Gradle plugin
Generates a gradle task for sending Twitter updates.
Features | How to use it | Who Made This | Contribute | Bugs and Feedback | License
- Gradle task ("createTweet") that send tweets with your user.
- You must add your mobile phone to your Twitter profile before creating an application.
- Go to: Settings -> Add Phone -> Add number -> Confirm -> Save
- Do not forget to turn off all text notifications.
- Set up a new app
- Go to: Twitter Apps -> Create New App -> Leave Callback URL empty -> Create your Twitter application
- You should see "Your application has been created. Please take a moment to review and adjust your application's settings".
- By default, app's access level is
read-only
. To send out tweets, it requires write permission. - Go to: Permissions tab -> What type of access does your application need? -> Choose Read and Write -> Update settings
- You should see "The permission settings have been successfully updated. It may take a moment for the changes to reflect."
- Time to get the keys and access tokens for OAuth.
- Go to:
Keys and Access Tokens tab
. You'll see this under "Your Access Token" : You haven't authorized this application for your own account yet. By creating your access token here, you will have everything you need to make API calls right away. The access token generated will be assigned your application's current permission level. - Click
Create my access token
- You should see "Your application access token has been successfully generated. It may take a moment for changes you've made to reflect. Refresh if your changes are not yet indicated. This access token can be used to make API requests on your own account's behalf. Do not share your access token secret with anyone."
- Verify that you see access token/secret - and the permission is set to "read and write".
- From this page, note down the
Access Token
,Access Token Secret
,Consumer Key (API Key)
,Consumer Secret (API Secret)
. Consumer Key/Secret help twitter identify the app and Access Token/Secret help twitter identify the user (that is you).
Add to your build.gradle
file this:
buildscript {
repositories {
jcenter()
maven {
url "https://dl.bintray.com/ferranpons/maven"
}
}
dependencies {
classpath 'com.ferranpons:twitter-gradle-plugin:1.0.2'
}
}
apply plugin: 'twitter-gradle-plugin'
// All the data required to send a tweet, you have to fill it
twitterPlugin {
consumerKey = "consumer key"
consumerSecret = "consumer secret"
accessToken = "access token"
accessTokenSecret = "access token secret"
message = "tweet message"
}
You're done. Now you only need to execute the "createTweet" task. ;)
Ferran Pons |
- Create an issue to discuss about your idea
- [Fork it] (https://github.com/ferranpons/twitter-gradle-plugin/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Profit! ✅
For bugs, questions and discussions please use the Github Issues.
Copyright 2017 Ferran Pons.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.