Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Node package for interacting with the Imgur API. This is a port of the official Python Imgur API, imgurpython.
Node package for interacting with the Imgur API. This is a port of the official Python Imgur API, imgurpython. See: https://github.com/Imgur/imgurpython
As mentioned at the GitHub page above: "You must register your client with the Imgur API, and provide the Client-ID to make any request to the API (see the Authentication note). If you want to perform actions on accounts, the user will have to authorize your application through OAuth2."
npm install imgurnode
var ImgurClient = require('imgurnode');
// Constructor params - Client ID, client secret, refresh token, access token
var client = new ImgurClient(clientID, clientSecret, refreshToken, null);
// Call init to validate access token
// Will refresh access token if refresh token was passed into constructor
client.init(function(err) {
if(err) console.log(err);
else console.log('Successfully refreshed access token');
}
// Get favorites for self
client.getAccountFavorites('me', function(err, data) {
if(err) console.log(err)
else console.log('Favorites: ', data);
});
FAQs
Node package for interacting with the Imgur API. This is a port of the official Python Imgur API, imgurpython.
The npm package imgurnode receives a total of 1 weekly downloads. As such, imgurnode popularity was classified as not popular.
We found that imgurnode 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.