flickr-sdk icon indicating copy to clipboard operation
flickr-sdk copied to clipboard

Almost certainly the best Flickr API client in the world for node and the browser

Results 9 flickr-sdk issues
Sort by recently updated
recently updated
newest added

I'm wanting to make requests to Flickr's api in a Cloudflare Worker, but it provides WebCrypto rather than node's crypto implementation. This turns out to be causing a real headache...

Adds a new script `build-types`, which generates typescript definitions for the client class (using a similar pattern to `build-rest`). Note: this is not comprehensive. Response types are only partially defined...

Hi I'm using the api to reorder a (very) large amount of photos. So far so good, but I can't find the api call to add an album to an...

Ampersands in descriptions (and possibly elsewhere) appear as `&` in the Flickr API. It presumably should be `&`. Not sure this is the right place to report this, but closest...

Again this is about the API rather than the javascript client, but it would be great to be able to limit searches to particular albums. The API call just needs...

This is a suggestion for the API itself, rather than this node client, but it would be good to be able to set the license for an image in the...

Hi guys, I think the sdk could be improved as follows: If we already have: ``` var flickr = new Flickr(Flickr.OAuth.createPlugin( process.env.FLICKR_CONSUMER_KEY, process.env.FLICKR_CONSUMER_SECRET, process.env.FLICKR_OAUTH_TOKEN, process.env.FLICKR_OAUTH_TOKEN_SECRET )); ``` ... then why...

Update the oauth verifier code to return all the info the api returns Update the test for verifier And also update the oauth example because it was passing a single...

I followed the README, and my react-app returns me an error saying "OAuth is not a constructor": code bellow FlickrService.js: ``` import FlickrConfig from "configs/FlickrConfig"; import { createFlickr } from...