Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schneidmaster/instawidget
Free, simple embeddable Instagram widget.
https://github.com/schneidmaster/instawidget
Last synced: about 2 months ago
JSON representation
Free, simple embeddable Instagram widget.
- Host: GitHub
- URL: https://github.com/schneidmaster/instawidget
- Owner: schneidmaster
- Created: 2015-07-23T02:41:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-04T04:12:47.000Z (over 8 years ago)
- Last Synced: 2024-11-09T19:28:32.533Z (about 2 months ago)
- Language: CoffeeScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instawidget
**Notice**: Instagram has [shut off access](http://www.macrumors.com/2015/11/17/instagram-new-api-changes/) to its feed APIs, so this package is no longer functional. I don't see any way around this restriction, but feel free to submit a PR if you see a way for this package to work.
Free, simple embeddable Instagram widget.
![Instawidget Screenshot](https://cloud.githubusercontent.com/assets/1896112/8843217/a342d5fc-30cb-11e5-95a5-ba2e8f82a73e.png)
## Usage
1. Grab `dist/production.min.css` and include it in your site. Or just style the widget yourself - there's no iframes to get in your way.
2. Grab `dist/production.min.js` and include it in your site. If you already have jQuery as a dependency, you can use `dist/production.lite.min.js` instead.
3. Create a blank div and initialize the plugin with jQuery:```javascript
$('#my_container_div').instawidget({
'username': 'schneidmaster', // required
'access_token': 'my_access_token', // required
'hashtag': 'nofilter' // optional
});
```You must provide your Instagram username and access token; you can generate an access token from [PixelUnion](http://instagram.pixelunion.net/) if you need one. If you provide a hashtag, the widget will show photos from across Instagram with that hashtag. If you don't, it will display your photos.
To check out a simple example, clone the repository, insert your username and access token in `examples/index.html`, and open it in a browser.
## Contributing
1. Fork it ( https://github.com/schneidmaster/instawidget/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request