Last active
August 29, 2015 14:00
-
-
Save RobK/3b227a1a5802f217595c to your computer and use it in GitHub Desktop.
Revisions
-
RobK revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ photoBox.login(config, function (err) { if (err) { console.log(err); } else { console.log('Finished, all photos downloaded (that was easy!)'); } } ); -
RobK revised this gist
May 4, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ var photoBox = require('photobox-downloader'); var config = { "baseDomain" : "www.photobox.ie", "authCookieValue" : "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" // change to your own auth cookie value }; // Login and download all photos from every album -
RobK revised this gist
May 4, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,6 @@ var photoBox = require('photobox-downloader'); var config = { "baseDomain" : "www.photobox.ie", "authCookieValue" : "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" // change this value to your own authentication cookie value }; // Login and download all photos from every album -
RobK renamed this gist
May 4, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
RobK created this gist
May 4, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ var photoBox = require('photobox-downloader'); var config = { "baseDomain" : "www.photobox.ie", "authCookieValue" : "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" // change this value to your own authentication cookie value }; // Login and download all photos from every album photoBox.login(config, function (err) { if (err) { console.log('ERROR! Something went wrong logging in, check your authCookieValue!'); console.log(err); } else { console.log('Logged into Photobox!'); photoBox.downloadAll( { showProgress : true, outputDir : __dirname + '/out' }, function (err) { if (err) { console.log(err); } else { console.log('Finished, all photos in every album have now been downloaded (that was easy!)'); } } ); } });