puppeteer-plugin-line-sticker-urldeprecated

A Puppeteer plugin to get the LINE Sticker URL

Usage no npm install needed!

<script type="module">
  import puppeteerPluginLineStickerUrl from 'https://cdn.skypack.dev/puppeteer-plugin-line-sticker-url';
</script>

README

puppeteer-plugin-line-sticker-url

A Puppeteer plugin to get the LINE Sticker URL

Getting Started

$ npm i puppeteer-plugin-line-sticker-url
const puppeteer = require('puppeteer')
const LINEStickerURLPlugin = require('puppeteer-plugin-line-sticker-url')

;(async () => {
  const browser = await puppeteer.launch()

  const result = await LINEStickerURLPlugin.default(browser, 15080)

  console.log(result)

  /**
   * [ 'https://stickershop.line-scdn.net/stickershop/v1/sticker/220715078/android/sticker.png',
   *   'https://stickershop.line-scdn.net/stickershop/v1/sticker/220715079/android/sticker.png',
   *   'https://stickershop.line-scdn.net/stickershop/v1/sticker/220715080/android/sticker.png',
   *   .
   *   .
   *   .
   *   'https://stickershop.line-scdn.net/stickershop/v1/sticker/220715117/android/sticker.png' ]
   */

  await browser.close()
})()