-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added config, updated readme, updated how FB page access tokens are used
- Now use config files to set configuration - Updated readme to include config.ini, how to download JSON files from reddit, how to get API keys of all social media handles - Uses FB page access tokens directly - TODO: Remove useless code
- Loading branch information
1 parent
a295193
commit d472879
Showing
8 changed files
with
89 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ def new_JSON(__JSON): | |
JSONs.append(__JSON) | ||
|
||
|
||
JSONs = [] | ||
JSONs = ['memes.json'] |
This file contains 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
Binary file not shown.
Binary file not shown.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[Instagram] | ||
username="@username" | ||
password="password" | ||
|
||
[Twitter] | ||
consumer_key="KEY" | ||
consumer_secret = "SECRET" | ||
access_token_key = "TOKEN" | ||
access_token_secret = "TOKEN SECRET" | ||
|
||
[Facebook] | ||
page_access_token = "TOKEN" | ||
app_id = "APP ID" | ||
app_secret = "APP SECRET" | ||
page_id = "PAGE ID" | ||
|
||
[Post] | ||
Instagram = False | ||
Facebook = True | ||
Twitter = True |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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