UNPKG

flickr-oauth-and-upload

Version:

Library that handles Flickr OAuth1.0 flow and photo upload

14 lines (11 loc) 546 B
var flickrApi = require('flickr-oauth-and-upload'); flickrApi.uploadPhoto('./DSC_8379s.jpg', '3dbf998e151f60031d75700f9f3a57f1', 'beeaf10e8508df3c', '72157645439863025-cf6426feea38f66d', '4b07c738911b422b', {title: Mytitle}, function (err, photoId) { if (!err) { console.log('photo uploaded as ' + photoId); } else { console.log('error: ' + err); } } );