nio-blocks / instagram

Polls Instagram for public posts by hashtag or username
2 stars 1 forks source link

Instagram

Polls Instagram for public posts, given a hashtag. The hashtag can be in either the caption or comments. Official documentation of Instagram API hashtags.

Properties

Inputs

Outputs

Commands

None

Dependencies

InstagramSearchByLocation

Polls Instagram for public posts at a specified location. Official documentation of User Instagram API.

Properties

Inputs

Outputs

Commands

None

Dependencies

InstagramSearchByRadius

Polls Instagram for public posts in a specified radius around latitudes/longitudes. Official documentation of User Instagram API.

Properties

Inputs

Outputs

Commands

None

Dependencies

InstagramSearchByUser

Polls Instagram for public posts by a specified user. Official documentation of User Instagram API.

Properties

Inputs

Outputs

Commands

None

Dependencies

Output

Creates a new signal for each Instagram Post. Every field on the Post will become a signal attribute. Official documentation on the repsonse fields from Instagram here. The following is a list of commonly include attributes, but note that not all will be included on every signal:

Output Example

{
  id: string,
  user: {
    username: string
  },
  caption: {
    text: string
  },
  link: string,
  images: {
    standard_resolution: {
      url: string,
      width: int,
      height: int
    }
  },
  user: {
    profile_picture: string,
    id: string
  },
  type: string,
  created_time: string
}