Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.4 KB

File metadata and controls

37 lines (25 loc) · 1.4 KB

InstaNET is an OAuth2 Consumer for Instagram API

You need to know that Instagram API responses contains generally 3 parts which are meta, data and pagination so IResponse covers that. In addition, IResponse contains limit member from RateLimit that you can check Rate Limits after each request.

How to use

InstagramAPI instance requires a TokenManager that keeps access token or client Id of your application.

    using(InstagramAPI api = new InstagramAPI(new TokenManager(_accessToken:"",_clientId:"")))
    {
        IResponse<UserInfo> userInfo = api.Users.BasicInfo("314123");
        
    }

You can also have a look at Tests.

InstagramAPI
├── Users
├── Media
├── Relationships
├── Comments
├── Likes
├── Tags
├── Locations
├── Geographies
├── Token