Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 fs = require('fs');
var request = require('request');
flickr.upload(request('https://farm9.staticflickr.com/8623/16015386389_872d309a89_z.jpg'));
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 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.