
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
flickr-upload
Advanced tools
A simple Flickr uploader using OAuth that supports files, streams, and buffers.
A simple Flickr uploader using OAuth that supports files, streams, and buffers.
npm install flickr-upload
OAuth tokens with "write" access are required to use flickr-upload
, but flickr-upload
does not handle getting them. If you use Google Chrome, you can easily generate them with flickr-oauth-dance.
This shows the basic usage of flickr-upload
:
var flickr = require('flickr-upload')({
consumer_key: "3eda09cb562caa5859dcbf6062ca9b7d",
consumer_secret: "b8f5c7f9d37a7e65",
token: "72157649904431428-4cb322030200ac38",
token_secret: "bbd90fb171b1c946"
});
flickr.upload('./test.jpg', function(err, photoId) {
if (err) {
console.error(err);
return;
}
console.log(photoId);
});
When requiring the library, pass in your OAuth configuration. The keys are:
{
consumer_key: "3eda09cb562caa5859dcbf6062ca9b7d",
consumer_secret: "b8f5c7f9d37a7e65",
token: "72157649904431428-4cb322030200ac38",
token_secret: "bbd90fb171b1c946"
}
It also supports an alternative config in the format generated by flickr-oauth-dance
:
{
"api_key": "3eda09cb562caa5859dcbf6062ca9b7d",
"api_secret": "b8f5c7f9d37a7e65",
"access_token": "72157649904431428-4cb322030200ac38",
"access_token_secret": "bbd90fb171b1c946"
}
photo can be a filepath, buffer, request stream, or readable stream.
config supports the following options from the Flickr Upload API:
title
description
tags
is_public, is_friend, is_family
safety_level
content_type
hidden
If you're uploading a buffer, you can define a filename
and contentType
, otherwise it will try to automatically generate these from the buffer contents and use a generic filename like photo.jpg
.
The callback function has the arguments (err, photoId).
flickr.upload('./test.jpg');
var fs = require('fs');
flickr.upload(fs.readFileSync('./test.jpg'));
var request = require('request');
flickr.upload(request('https://farm9.staticflickr.com/8623/16015386389_872d309a89_z.jpg'));
Don't use the filename from the stream:
var request = require('request');
flickr.upload(request('https://farm9.staticflickr.com/8623/16015386389_872d309a89_z.jpg'), {strip_filename: true});
var fs = require('fs');
flickr.upload(fs.createReadStream('./test.jpg'));
flickr.upload('./test.jpg', {title: 'Test'});
flickr.upload('./test.jpg', {is_public: 0});
MIT
FAQs
A simple Flickr uploader using OAuth that supports files, streams, and buffers.
The npm package flickr-upload receives a total of 6 weekly downloads. As such, flickr-upload popularity was classified as not popular.
We found that flickr-upload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.