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.
@personal-api/plugin-instagram
Advanced tools
Add an Express route that returns a user's Instagram photos.
Add recent photos to JS Personal API
$ npm install --save @personal-api/plugin-instagram
In your JS Personal API plugins file instantiate the InstagramPlugin
class, passing the following required options defined below under Options, and call apply()
with the Express app
object.
import InstagramPlugin from '@personal-api/plugin-instagram';
export default (app) => {
const Instagram = new InstagramPlugin({
accessToken: '0000000000.0000000.00000000000000000000000000000000',
onError: () => {},
onSuccess: () => {},
userId: '0000000000'
});
Instagram.apply(app);
};
Configuration options for the plugin class.
Type: String
Your Instagram access token for API access.
Type: Number
Default: 3
(Optional) The maximum number of pagination pages to fetch from Instagram.
Type: Function
(Optional) An Express middleware run before the route's controller.
Type: Function
The error handler for API responses.
Type: Function
The success handler for API responses.
Type: String
The Instagram User ID for API access.
MIT © Chris Vogt
FAQs
Add an Express route that returns a user's Instagram photos.
The npm package @personal-api/plugin-instagram receives a total of 0 weekly downloads. As such, @personal-api/plugin-instagram popularity was classified as not popular.
We found that @personal-api/plugin-instagram 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.