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