node-flickrapi
node-flickrapi copied to clipboard
A node.js (and client-library) implementation of the Flickr API with oauth API key authentication and API method proxying
I was trying to rescue my original photos before Flickr deletes them but I was not getting them in the download. I am posting this issue for anyone else who...
Here is my code: ```javascript var Flickr = require("flickrapi"), flickrOptions = { "user_id": "(Hidden)", "api_key": "(Hidden)", "api_secret": "(Hidden)", "access_token": "(Hidden)", "access_token_secret": "(Hidden)", "permissions": "write" }; Flickr.authenticate(flickrOptions, function(error, flickr) { if...
Hello I'm trying to upload videos via the library. When trying to fetch the video via the ID, the Flickr API returns "{ stat: 'fail', code: 1, message: 'Photo not...
When I tried to change the order of my photosets using your package I ran into a problem, because I had too many photosets and therefore the URI of request...
#### TL;DR - Is it possible to pass on the error object returned by flickr api instead of just the error message #### Longer version This is the scenario I...
I get results here only if the `min_taken_date` and `max_taken_date` are commented out ``` javascript var Flickr = require("flickrapi"), flickrOptions = { api_key: "xxxxxxxxxxxxxxxxxxxxx", secret: "xxxxxxxxxxxxxxxxxxxxx" }; Flickr.authenticate(flickrOptions, function(error, flickr)...
Hello, this is not a bug but more of a cry for help. The authorization options include the callback method and the "Paste the oauth_verifier" one but neither is good...
Very specifically, the auth system now has plenty of npm libraries available, and the API fetch should be a "one time, and afterwards only if called with `--update`" thing.
Hey There, I read in your read me that when you start up the app it can take quite a bit of time to start up and that it doesn't...