React Instagram Authless Feed
Notice
2021/03 Cross-Origin Resource Sharing (CORS) security improvements have broken the way this library extracts user feed data from Instagram. As a result, I am archiving the project.
Examples
Screenshots
Install
npm install jamesmoriarty/react-instagram-authless-feed#v2.0.0
Props
Name | Description | Required |
---|---|---|
userName | Instagram user name. | true |
className | Container css class. | false |
classNameLoading | Container loading css class. | false |
limit | Limit media returned. | false |
Usage
Please use with caution - Instagram's been blocking the workarounds this solution depends on more regularly.
import Feed from "react-instagram-authless-feed"
...
ReactDOM.render(
<Feed userName="jamespaulmoriarty" className="Feed" classNameLoading="Loading" limit="3"/>,
document.getElementById('root')
);
It's recommended to wrap the component in an Error Boundary because of Instagram's rate limiting. See #12.
Development
npm start
Test
npm test
Release
npm run dist
Build App
npm run build
Deploy App
npm run deploy