Get personal RSS feed access to your Instagrams Edit
395
Have you ever wished you could integrate your Instagrams into other software easily? Have you ever wanted an RSS feed of your Instagrams? Do you just want quick personal access to your Instagrams via a URL without having to spin up an Instagram client with auth?
Welp, Instagrammer is here to help you. Sure, it fills a really niche need, but if you want to do something with your instagrams with another piece of software that has no ability to talk to Instagram, this is your jam.
It basically just lets your instagrams be more accessible for other things.

Clone down this repo or use the docker container.
Instagrammer runs on port 3001 by default.
You'll need to go to the Instagram Developer Console and create a new app. Once you've done that and gotten your CLIENT_ID and CLIENT_SECRET you can start setting up Instagrammer.
Protip: Make sure you enter the right redirect URI when creating the Instagram app, so that auth can complete correctly. Check the host and port you'll be accessing Instagrammer with before doing this.
Redirect URI: The format your Redirect URI will take is $host:$port/auth/instagram/callback. For example: http://192.168.1.50:3001/auth/instagram/callback.
.env file based on the .env.example filePORT=3005) Instagrammer will run on.script/startInstagrammer will set it self up and start running.
Running in Docker is the easiest.
Load up the container using your Instagram app credentials and optionally set the port.
docker run \
--name instagrammer \
--restart=always \
-d \
-p 3002:3002 \
-e INSTAGRAM_CLIENT_ID='xxxx' \
-e INSTAGRAM_CLIENT_SECRET='xxx' \
-e PORT=3002 \
jonmaddox/instagrammer
Get Instagrammer running and load it in your browser. Click Sign In With Instagram to auth your account.
Instagrammer will fetch your last 20 photos and continually check for new photos every 10 minutes.
You can authorize as many users that you want. To do that, log out of your Instagram account, log into another account, and Sign In With Instagram on Instagrammer again. Voila, the second user will be added.
Content type
Image
Digest
Size
34.5 MB
Last updated
over 8 years ago
docker pull jonmaddox/instagrammer