Instagram私有Web API客户端 :selfie: :sparkles: :red_heart_selector:
Instagram私有Web API的简单,简单且非常完整的实现。
支持所有主要功能
经过良好测试的CI
所有测试每天运行
安装
npm install instagram-web-api
用法
Intance Instagram和呼叫login方法; 这会将凭据存储在内存中。
const Instagram = require ( 'instagram-web-api' )
const { username , password } = process . env
const client = new Instagram ( { username , password } )
client
. login ( )
. then ( ( ) => {
client
. getProfile ( )
. then ( console . log )
} )
在节点> = 8中使用async / await
1