This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <?php | |
| require __DIR__.'/vendor/autoload.php'; | |
| // FILL IN ALL THESE VALUES. ALL ARE REQUIRED | |
| const TRELLO_KEY = ''; // https://trello.com/1/appKey/generate | |
| const TRELLO_TOKEN = ''; // https://trello.com/1/connect?key=YOUR-KEY-HERE&name=rss2trello&response_type=token&scope=read,write&expiration=never | |
| const TRELLO_BOARD_ID = ''; // the hashs after the /b/ when you're viewing the board. e.g. https://trello.com/b/d5jHzcDp/ | |
| const TRELLO_LIST = ''; // name of list where cards will be added |