I have used facebook access token to authenticate and facebook graph API to retrieve album details.
1. You can get the script from following git-hub repository.
https://github.com/yasithacp/fb-albums-download-script
2. Then you need to get your facebook access token.
- Go to the facebook graph explorer.
- Log in using your facebook credentials.
- Click on the Get Token drop down and then Get Access Token.
- Select check-box and click on Get Access Token.
- Note down your access token.
3. Open up the script file and modify the following configuration section.
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
define('ACCESS_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'); | |
define('API_HOST', 'https://graph.facebook.com/'); | |
define('VERSION', 'v2.3'); | |
define('FOLDER_PATH', '/Users/yasitha/facebook_albums/'); |
- ACCESS_KEY: Access key retrieved in step 2.
- FOLDER_PATH: Local folder path that albums should download.
5. Execute the following command to run the script and download will start.
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
php download-facebook-albums.php |