This a module for the MagicMirror. It pulls photos from your own or another users Instagram feed (requires API_KEY). The photos are then rotated and animated in the screen.
modules
folder and execute git clone https://github.com/kapsolas/MMM-Instagram.git
. A new folder will appear, navigate into it.npm install
to install the node dependencies.The entry in config.js
can include the following options:
{ module: 'MMM-Instagram', position: 'top_left', config: { access_token: '1160247792.b119586.49fa97770ee34deb92e621069c760cee', count: 200, min_timestamp: 0, animationSpeed: 2500, updateInterval: 12000 }
Option | Description |
---|---|
access_token |
Access token which is received from Instagram Type: string This value is REQUIRED |
count |
Number of pictures to pull from the feed. This value is REQUIRED |
min_timestamp |
Set to 0 to pull images from when you created the account. This value is REQUIRED |
animationSpeed |
How long the fade out and fade in of photos should take. This value is REQUIRED |
updateInterval |
How long before refreshing image list. This value is REQUIRED |
Here is an example of an entry in config.js
{
module: 'MMM-Instagram',
position: 'top_right',
config: {
access_token: 'API_KEY from instagram',
count: 200,
min_timestamp: 0,
animationSpeed: 2500,
updateInterval: 12500
}
},
npm install
)