-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] save media from all post in a group
- Loading branch information
1 parent
3f7495a
commit d3894fd
Showing
10 changed files
with
174 additions
and
75 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
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
// do not modify this | ||
export const FB_API_HOST = "https://graph.facebook.com/v12.0"; | ||
|
||
// you can modify all the variables below | ||
export const ACCESS_TOKEN = "YOUR_ACCESS_TOKEN"; | ||
export const ACCESS_TOKEN = "EAAAAZAw4FxQIBAON6KcVr9O2gvkVJHq1QmCc8uV2wyJTf7Uwk0vqDLmaZA39ZAD4CdXRT0Yspp7WS6zNHY9B3t5iQ8iVGbwkn7769qBJod8gn9YeERZBnQ0r8Yz5ljk7DAQhQn1HO77c36UqjtPJfNiDgQUJybiuNrkVDENkRAZDZD"; | ||
export const WAIT_BEFORE_NEXT_FETCH = 0; | ||
export const ID_LINK_SEPERATOR = ";"; | ||
export const PHOTO_FILE_FORMAT = 'png'; // OR jpg | ||
export const VIDEO_FILE_FORMAT = 'mp4'; // OR wav ? | ||
export const FOLDER_TO_SAVE_LINKS = "downloads/links"; | ||
export const FOLDER_TO_SAVE_IMAGES = 'downloads/images'; | ||
export const FOLDER_TO_SAVE_IMAGES = 'downloads/images'; | ||
export const FOLDER_TO_SAVE_GROUP_MEDIA = 'downloads/group_media'; |
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
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,5 @@ | ||
export const FB_API_HOST = "https://graph.facebook.com/v12.0"; | ||
export const MEDIA_TYPE = { | ||
PHOTO: "photo", | ||
VIDEO: "video", | ||
}; |
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
Oops, something went wrong.