All Projects â†’ CodeDotJS â†’ instagram-profile-picture

CodeDotJS / instagram-profile-picture

Licence: MIT license
💎 Get url to the profile picture (and more) of any Instagram user in different resolutions!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to instagram-profile-picture

django-js-routes
Expose and perform reverse lookups of Django URLs in the frontend world.
Stars: ✭ 20 (-45.95%)
Mutual labels:  resolution
Instagram-Giveaways-Winner
Instagram Bot which when given a post url will spam mentions to increase the chances of winning. Win Instagram Giveaways!
Stars: ✭ 95 (+156.76%)
Mutual labels:  instagram
Get-instagram-users-info---Any-instagram-account
Dump instagram users info without API.
Stars: ✭ 345 (+832.43%)
Mutual labels:  instagram
SocialMediaAppForFoodies
This is a Social networking android app for food lovers. It is a way to connect with other foodies and grow your network of friends and followers. In this app we can, 1.Users can create their own account and maintain it. 2.Post the Recipes with image and Description. 3.Followers can like and Comment on your post 4.Home screen with your and whom …
Stars: ✭ 40 (+8.11%)
Mutual labels:  instagram
Hashtag-Wall-Server
Hashtag wall that displays posts from social media
Stars: ✭ 33 (-10.81%)
Mutual labels:  instagram
instagrammer
Get personal RSS feed access to your Instagrams
Stars: ✭ 15 (-59.46%)
Mutual labels:  instagram
Insta-Bot
Python bot using Selenium increasing Instagram Followers.
Stars: ✭ 62 (+67.57%)
Mutual labels:  instagram
instdd
Instagram Photos Download - Save Instagram photos and videos online
Stars: ✭ 16 (-56.76%)
Mutual labels:  instagram
InstaLite
Instagram api not official easy-to-use class, minimal number of features
Stars: ✭ 72 (+94.59%)
Mutual labels:  instagram
go-trending
Trending algorithm based on the article "Trending at Instagram"
Stars: ✭ 40 (+8.11%)
Mutual labels:  instagram
instagram
A Matrix-Instagram DM puppeting bridge
Stars: ✭ 69 (+86.49%)
Mutual labels:  instagram
InstagramLocationScraper
No description or website provided.
Stars: ✭ 13 (-64.86%)
Mutual labels:  instagram
instastory.js
This is a jQuery plugin to make it easy to get a feed from instagram. No need of access tokens and other stuff, Only thing needed is jQuery.
Stars: ✭ 36 (-2.7%)
Mutual labels:  instagram
InstaCrawlR
Crawl public Instagram data using R scripts without API access token. See InstaCrawlR Instructions.pdf
Stars: ✭ 108 (+191.89%)
Mutual labels:  instagram
instagram graph api
This is a version of koala gem which provides commonly used Instagram Graph APIs
Stars: ✭ 28 (-24.32%)
Mutual labels:  instagram
res
Device resolution detection module
Stars: ✭ 35 (-5.41%)
Mutual labels:  resolution
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-43.24%)
Mutual labels:  instagram
react-instagram-authless-feed
React component to provide a token-less Instagram feed.
Stars: ✭ 50 (+35.14%)
Mutual labels:  instagram
apollo-instagram-clone
Apollogram | A place where you could share photos, like media, and follow peoples.
Stars: ✭ 24 (-35.14%)
Mutual labels:  instagram
rn instagram clone
React Native Instagram UI Clone & Steemit App
Stars: ✭ 70 (+89.19%)
Mutual labels:  instagram


Get url to the profile picture of any instagram user in different resolutions

Install

npm install --save instagram-profile-picture

Usage

  • Full size : 1080x1080 px
const ipp = require('instagram-profile-picture');

ipp('9gag').then(user => {
  console.log(user);
  // => https://scontent-sit4-1.cdninstagram.com/7...jpg
});
  • Regular size : 640x640 px
ipp.regular('instagram').then(user => {
  console.log(user);
  // => https://scontent-sit4-1.cdninstagram.com/7...jpg
});
  • Medium size : 320x320 px
ipp.medium('9gag').then(user => {
  console.log(user);
  // => https://scontent-sit4-1.cdninstagram.com/7...jpg
});
  • Small size : 150x150 px
ipp.small('9gag').then(user => {
  console.log(user);
  // => https://scontent-sit4-1.cdninstagram.com/7...jpg
});

Extra

Additionally, you can get downloadable link to the publically shared media (images/videos)

  • Images
ipp.image('https://www.instagram.com/p/BRfTRCQBeHw/').then(img => {
  console.log(img);
// => "https://instagram.fpat1-1.fna....9017349928908750848_n.jpg"
});
  • Videos
ipp.video('https://www.instagram.com/p/BTTuhDsgtCs/').then(vid => {
  console.log(vid);
  // => "https://instagram.fpat1-1.fn....9178079197241802752_n.mp4"
})

Related

  • Instavim : Download instagram media directly from command line.

License

MIT © Rishi Giri;

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].