Skip to content

gokhangirgin/InstaNET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages