/elephant

Twitter bot to import twitter lists from file that is generated by giraffe

Primary LanguageJavaApache License 2.0Apache-2.0

elephant

Build Status gradle-version

Import twitter lists from json formatted file to twitter account.

Usage

clone project and set required properties in elephant.properties file, and then execute:

gradle run

elephant.properties

elephant-consumer-key=
elephant-consumer-secret=
elephant-access-token=
elephant-access-token-secret=
import-file=

example import-file

[
  {
    "name": "twitter-list",
    "description": "",
    "members": [
      {
        "id": 1,
        "screenName": "a"
      },
      {
        "id": 2,
        "screenName": "b"
      },
      {
        "id": 3,
        "screenName": "c"
      }
    ]
  }
]