Releases: dilame/instagram-private-api
Releases · dilame/instagram-private-api
v1.0.0-5
v1.0.0-4
v1.0.0-3
v1.0.0-2
v1.0.0-1
Frame for v1.0.0
This is pre-major release without any useful functionality. I decided to start writing v1 from scratch because old code turns into uncontrollable set of related classes that inconvenient to use for both maintainers and users.
I developed new simple structure that, i hope, you will like. Now it works like this
import { IgApiClient } from './src';
const ig = new IgApiClient();
ig.state.generateDevice(process.env.IG_USERNAME);
const response = await ig.auth.login(process.env.IG_USERNAME, process.env.IG_PASSWORD);
const feed = await ig.feed.accountFollowersFeed(response.pk).get();
Now i need a little help with finalize v1. If you are using this library, please take some time to write at least one file.