다양한 해상도의 인스타그램 사용자 프로필 사진 URL을 받으세요
npm install --save instagram-profile-picture
Full size
:
1080x1080 px
const ipp = require ( 'instagram-profile-picture' ) ;
ipp ( '9gag' ) . then ( user => {
console . log ( user ) ;
// => https://scontent-sit4-1.cdninstagram.com/7...jpg
} ) ;
Regular size
:
640x640 px
ipp . regular ( 'instagram' ) . then ( user => {
console . log ( user ) ;
// => https://scontent-sit4-1.cdninstagram.com/7...jpg
} ) ;
Medium size
:
320x320 px
ipp . medium ( '9gag' ) . then ( user => {
console . log ( user ) ;
// => https://scontent-sit4-1.cdninstagram.com/7...jpg
} ) ;
Small size
:
150x150 px
ipp . small ( '9gag' ) . then ( user => {
console . log ( user ) ;
// => https://scontent-sit4-1.cdninstagram.com/7...jpg
} ) ;
또한 공개적으로 공유된 미디어 (images/videos)
에 대한 다운로드 가능한 링크를 얻을 수 있습니다.
Images
ipp . image ( 'https://www.instagram.com/p/BRfTRCQBeHw/' ) . then ( img => {
console . log ( img ) ;
// => "https://instagram.fpat1-1.fna....9017349928908750848_n.jpg"
} ) ;
Videos
ipp . video ( 'https://www.instagram.com/p/BTTuhDsgtCs/' ) . then ( vid => {
console . log ( vid ) ;
// => "https://instagram.fpat1-1.fn....9178079197241802752_n.mp4"
} )
Instavim
: 명령줄에서 직접 인스타그램 미디어를 다운로드합니다. MIT © 리시 기리;