1.0.0 • Published 7 years ago

fbg-videos v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

fbg-videos

Build Status XO code style

Get last videos of Facebook Group

Install

npm install --save fbg-videos

Usage

const {getVideos, getVideoById} = require('fbg-videos')

// Facebook Group ID
const group = '613603098840735'
// Cookie of User
const cookie = {c_user: '', xs: ''}

getVideos(group, {cookie})
  .then(async videos => {
    const {id} = videos[0]
    
    const {files} = await getVideoById(id, {cookie})
    console.log(files)
  })

License

MIT © Jesus Lobos

1.0.0

7 years ago