npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-eksido-instagram

v1.0.2

Published

Node-RED node for eksido-instagram

Downloads

1

Readme

node-red-contrib-eksido-instagram

Node-RED node for eksido-instagram

Description of Instagram RESTful API.

Current limitations:

Warning: For Apps created on or after Nov 17, 2015 API responses containing media objects no longer return the data field in comments and likes nodes.

Last update: 2015-11-28

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

    npm install node-red-contrib-eksido-instagram

Usage

Methods

  • getGeographiesByGeoIdMediaRecent

    Get recent media from a geography subscription that you created.

Note: You can only access Geographies that were explicitly created by your OAuth client. Check the Geography Subscriptions section of the real-time updates page. When you create a subscription to some geography that you define, you will be returned a unique geo-id that can be used in this query. To backfill photos from the location covered by this geography, use the media search endpoint.

Warning: Deprecated for Apps created on or after Nov 17, 2015

  • getLocationsSearch

    Search for a location by geographic coordinate.

  • getLocationsByLocationId

    Get information about a location.

  • getLocationsByLocationIdMediaRecent

    Get a list of recent media objects from a given location.

  • getMediaPopular

    Get a list of what media is most popular at the moment. Can return mix of image and video types.

Warning: Deprecated for Apps created on or after Nov 17, 2015

  • getMediaSearch

    Search for media in a given area. The default time span is set to 5 days. The time span must not exceed 7 days. Defaults time stamps cover the last 5 days. Can return mix of image and video types.

  • getMediaShortcodeByShortcode

    This endpoint returns the same response as GET /media/{media-id}.

A media object's shortcode can be found in its shortlink URL. An example shortlink is http://instagram.com/p/D/, its corresponding shortcode is D.

  • getMediaByMediaId

    Get information about a media object. The returned type key will allow you to differentiate between image and video media.

Note: if you authenticate with an OAuth Token, you will receive the user_has_liked key which quickly tells you whether the current user has liked this media item.

  • getMediaByMediaIdComments

    Get a list of recent comments on a media object.

  • postMediaByMediaIdComments

    Create a comment on a media object with the following rules:

    • The total length of the comment cannot exceed 300 characters.
    • The comment cannot contain more than 4 hashtags.
    • The comment cannot contain more than 1 URL.
    • The comment cannot consist of all capital letters.
  • deleteMediaByMediaIdCommentsByCommentId

    Remove a comment either on the authenticated user's media object or authored by the authenticated user.

  • deleteMediaByMediaIdLikes

    Remove a like on this media by the currently authenticated user.

  • getMediaByMediaIdLikes

    Get a list of users who have liked this media.

  • postMediaByMediaIdLikes

    Set a like on this media by the currently authenticated user.

  • getTagsSearch

    Search for tags by name.

  • getTagsByTagName

    Get information about a tag object.

  • getTagsByTagNameMediaRecent

    Get a list of recently tagged media. Use the max_tag_id and min_tag_id parameters in the pagination response to paginate through these objects.

  • getUsersSearch

    Search for a user by name.

  • getUsersSelfFeed

    See the authenticated user's feed.

Warning: Deprecated for Apps created on or after Nov 17, 2015

  • getUsersSelfMediaLiked

    See the list of media liked by the authenticated user. Private media is returned as long as the authenticated user has permission to view that media. Liked media lists are only available for the currently authenticated user.

  • getUsersSelfRequestedBy

    List the users who have requested this user's permission to follow.

  • getUsersByUserId

    Get basic information about a user. To get information about the owner of the access token, you can use self instead of the user-id.

Security scope public_content is required to read information about other users.

  • getUsersByUserIdFollowedBy

    Get the list of users this user is followed by. To get users followed by the owner of the access token, you can use self instead of the user-id.

  • getUsersByUserIdFollows

    Get the list of users this user follows. To get follows of the owner of the access token, you can use self instead of the user-id.

  • getUsersByUserIdMediaRecent

    Get the most recent media published by a user. To get the most recent media published by the owner of the access token, you can use self instead of the user-id.

Security scope public_content is required to read information about other users.

  • getUsersByUserIdRelationship

    Get information about a relationship to another user.

  • postUsersByUserIdRelationship

    Modify the relationship between the current user and the target user.

node-red-contrib-eksido-instagram