https://github.com/timeforaninja/node-imgur-info
Imgur resolver without api code
https://github.com/timeforaninja/node-imgur-info
Last synced: 3 months ago
JSON representation
Imgur resolver without api code
- Host: GitHub
- URL: https://github.com/timeforaninja/node-imgur-info
- Owner: TimeForANinja
- License: mit
- Created: 2017-05-28T20:21:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T12:25:50.000Z (about 6 years ago)
- Last Synced: 2025-02-14T20:38:45.267Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 38.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-imgur-info
[](https://greenkeeper.io/)
Simple js only module to resolve Imgur albums without using a token
# Usage
```js
var imgur_info = require('imgur-info');
imgur_info('https://imgur.com/a/some_album', function(err, info) {
if(err) throw err;
dosth(info);
});
```
# API
### imgur_info(ref, [callback])
Attempts to resolve the given playlist id
* `ref`
* ether a direct link like `https://imgur.com/gallery/no3t9ib`
* just the page `/gallery/no3t9ib`
* just the id `no3t9ib`
* `callback(err, result)`
* function
* getting fired after the request is done
* returns a Promise when no callback is defined
# Install
npm install --save imgur-info
# License
MIT