Reputation:
Is there any way to auto-aupload photos to my website, when they are published on Instagram?
Upvotes: 0
Views: 811
Reputation: 12952
You can use Instagram API to check for new content and upload to your website:
https://api.instagram.com/v1/users/self/?access_token=ACCESS-TOKEN
Since you need to access only your content, you dont need to get reviewed by Instagram, you will have access to latest 20 images using API in sandbox mode, write script on your server to check for API once a day and update your website.
Upvotes: 1