![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
This library is very much in it infancy and only support a small number of methods that the SmugMug 1.3.0 API supports. These methods should work, but they have not been tested on a large scale. SmugMug states that 1.3.0 is deprecated and will be removed "in the future." It is unlikely that this API will be removed tomorrow since the 2.0 API is still in beta.
The example below will login and list all of the albums for the user exampleuser
var humble = require('humblemug');
humble.config({api_key: '1234567890abc'});
humble.login.anon().then(function () {
humble.albums.get('exampleuser').then(function (album_list) {
console.log(album_list);
});
});
Config takes in an object of configuration information to store and use.
humble.config({api_key: '1234567890abc'});
Most public information can be accessed with after loggining in anonymously
humble.login.anon().then(function () {
//Do Stuff
});
Lists all of the albums for a given user
humble.albums.get('username').then(function (album_list) {
//Do Stuff
});
Gets all the info for a given album
humble.albums.getInfo('album_id', 'album_key').then(function (album_info) {
//Do Stuff
});
Lists all of the images in an album
humble.images.get('album_id', 'album_key').then(function (image_list) {
//Do Stuff
});
Most SmugMug API calls support additional options. You can call most of these methods with an options object to set additional information. NOTE: These options appear to be case sensitive so becareful
var options = {
Heavy: true
};
humble.images.get('album_id', 'album_key', options).then(function (image_list) {
//Do Stuff
});
FAQs
A library for interacting with the SmugMug API
The npm package humblemug receives a total of 1 weekly downloads. As such, humblemug popularity was classified as not popular.
We found that humblemug 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.