https://github.com/neulandagentur/adobe-stock-image-bot
📷 Adobe-Stock image id => author name
https://github.com/neulandagentur/adobe-stock-image-bot
adobe adobe-stock bot puppeteer
Last synced: 5 months ago
JSON representation
📷 Adobe-Stock image id => author name
- Host: GitHub
- URL: https://github.com/neulandagentur/adobe-stock-image-bot
- Owner: neulandagentur
- License: mit
- Created: 2019-01-09T19:15:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T23:34:21.000Z (over 4 years ago)
- Last Synced: 2025-10-19T19:32:30.080Z (9 months ago)
- Topics: adobe, adobe-stock, bot, puppeteer
- Language: JavaScript
- Homepage:
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

---
Helper function that returns an author of an adobe stock image id.

---
## Install
``` npm
npm i adobe-stock-image-bot
```
## Usage
``` nodejs
const getAuthor = require('adobe-stock-image-bot');
const test = '184567447';
(async () => {
const author = await getAuthor(test);
console.log(author);
})();
```