All Projects → michaeldegli → Dot Net Instagram

michaeldegli / Dot Net Instagram

Licence: mit
C# wrapper for Instagram's API

Projects that are alternatives of or similar to Dot Net Instagram

InstagramCpp
Instagram REST API client wirtten in C++
Stars: ✭ 24 (+140%)
Mutual labels:  instagram-api
Instagramlive Php
A PHP script that allows for you to go live on Instagram with any streaming program that supports RTMP!
Stars: ✭ 362 (+3520%)
Mutual labels:  instagram-api
Instagram Scraper
Scrapes an instagram user's photos and videos
Stars: ✭ 5,664 (+56540%)
Mutual labels:  instagram-api
instagram private api
An Instagram-Client written in Dart
Stars: ✭ 39 (+290%)
Mutual labels:  instagram-api
Instafeed.js
A simple Instagram JavaScript plugin for your website
Stars: ✭ 3,376 (+33660%)
Mutual labels:  instagram-api
Instasharper
Private Instagram API
Stars: ✭ 426 (+4160%)
Mutual labels:  instagram-api
go-instagram
Instagram private API in Go
Stars: ✭ 71 (+610%)
Mutual labels:  instagram-api
Socialmanagertools Igbot
🤖 📷 Instagram Bot made with love and nodejs
Stars: ✭ 699 (+6890%)
Mutual labels:  instagram-api
Instagram Java Scraper
Instagram Java Scraper. Get account information, photos, videos and comments.
Stars: ✭ 335 (+3250%)
Mutual labels:  instagram-api
Instapy Cli
✨ Python library and CLI to upload photo and video on Instagram. W/o a phone!
Stars: ✭ 498 (+4880%)
Mutual labels:  instagram-api
Instamancer
Scrape Instagram's API with Puppeteer
Stars: ✭ 273 (+2630%)
Mutual labels:  instagram-api
Osintgram
Osintgram is a OSINT tool on Instagram. It offers an interactive shell to perform analysis on Instagram account of any users by its nickname
Stars: ✭ 312 (+3020%)
Mutual labels:  instagram-api
Instagram User Feed
This is a scrapper to easily fetch any feed and interact with Instagram (like, follow, etc.) without OAuth for PHP.
Stars: ✭ 435 (+4250%)
Mutual labels:  instagram-api
Instagram-Scraper-2021
Scrape Instagram content and stories anonymously, using a new technique based on the har file (No Token + No public API).
Stars: ✭ 57 (+470%)
Mutual labels:  instagram-api
Swiftinstagram
Instagram API client written in Swift
Stars: ✭ 570 (+5600%)
Mutual labels:  instagram-api
isave-app
Instagram tool to download image, video and reels - App
Stars: ✭ 17 (+70%)
Mutual labels:  instagram-api
Jinstagram
A Java library for the Instagram API.
Stars: ✭ 382 (+3720%)
Mutual labels:  instagram-api
Goinsta
Unofficial Instagram API written in Golang
Stars: ✭ 733 (+7230%)
Mutual labels:  instagram-api
Instagram4j
📷 Instagram private API in Java
Stars: ✭ 629 (+6190%)
Mutual labels:  instagram-api
Instagramapisharp
A complete Private Instagram API for .NET (C#, VB.NET).
Stars: ✭ 486 (+4760%)
Mutual labels:  instagram-api

instagramdotnet

C# Wrapper for Instagram Rest API

** Please be aware that this project is not maintained anymore. **

Synopsis

instagram.net is a class which you can use to interact with Instagram's API endpoints. It's a simple plugin that allows you to access public streams in under 5 lines of code.

Endpoints

This library covers the following endpoints:

  1. Users Search [GET /users/search] - https://instagram.com/developer/endpoints/users/#get_users_search
  2. Media Recent [GET /users/user-id/media/recent] - https://instagram.com/developer/endpoints/users/#get_users_media_recent

Installation

You must download and add a reference to Json.NET http://www.newtonsoft.com/json

Code Example

In your code behind

using InstagramDotNet;

Instagram ig = new Instagram("YOUR_ACCESS_TOKEN");

//Outputs the numeric value of a username
//returns a JSON String containing the user id value
ig.getUserId("USER_NAME");

//Bound to your repeater in your .aspx page
Repeater1.DataSource = ig.getMediaRecent("INSTAGRAM_USER_ID", 10);
Repeater1.DataBind();

In your .aspx page

<asp:Repeater ID="Repeater1" runat="server">
  <ItemTemplate>
      <div>
          <img src='<%# Eval("SmallImage") %>' alt='<%# Eval("Caption") %>' />
          <p><%# Eval("Tags") %></p>
          <p>&hearts; <%# Eval("Likes") %></p>
      </div>
  </ItemTemplate>
</asp:Repeater>

Reference

  1. http://instagram.com/developer/endpoints/

License

MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].