dylate-instagram-js
v1.0.35
Published
A javascript library to use the instagram api with an access token
Downloads
1
Readme
Dylate Instagram JS
This is Dylate's javascript library to make calls to the Instagram API.
Installation
npm i dylate-instagram-js
Usage
import Instagram from "dylate-instagram-js"
const instagram = new Instagram("ACCESS_TOKEN");
instagram.mediaEdge(['id','caption'])
.then((data) => {
/*
[
{
"id": "17895695668004550",
"caption": ""
},
...
]
*/
});