Skip to content

ThreatIngestor v1.0.0b5

Pre-release
Pre-release

Choose a tag to compare

@rshipp rshipp released this 19 Apr 22:18

Fifth beta release.

Note: This release has breaking changes!

  • Changed the names of Twitter credential keys for improved clarity (#67).
  • Added a warning to log output that mentions the above change, and points to these release notes. (Will be removed in a future release.)

Migration notes

If you used a Twitter plugin (source and/or operator) with a previous release (<1.0.0b5), you will need to update the Twitter credentials in your configuration YAML. The credential keys have been renamed as follows:

Old name Current name
token access_token
token_key access_token_secret
con_secret_key api_secret_key
con_secret api_key

Example old Twitter credentials :

# Don't do this!
- name: twitter-auth
  token: MY_ACCESS_TOKEN
  token_key: MY_ACCESS_TOKEN_SECRET
  con_secret_key: MY_API_SECRET_KEY
  con_secret: MY_API_KEY

Example new Twitter credentials:

# Do this instead!
- name: twitter-auth
  api_key: MY_API_KEY
  api_secret_key: MY_API_SECRET_KEY
  access_token: MY_ACCESS_TOKEN
  access_token_secret: MY_ACCESS_TOKEN_SECRET

The order in which you specify the keys in the configuration is not important. The order used in all new, updated examples is the same order in which the secrets are given in your Twitter developer account app details.