@uppy/instagram
The Instagram plugin lets users import photos from their Instagram account.
A Companion instance is required for the Instagram plugin to work. Companion handles authentication with Instagram, downloads the pictures and videos, and uploads them to the destination. This saves the user bandwidth, especially helpful if they are on a mobile connection.
Uppy is being developed by the folks at Transloadit, a versatile file encoding service.
Example
const Uppy = require('@uppy/core')
const Instagram = require('@uppy/instagram')
const uppy = Uppy()
uppy.use(Instagram, {
})
Installation
$ npm install @uppy/instagram --save
We recommend installing from npm and then using a module bundler such as Webpack, Browserify or Rollup.js.
Alternatively, you can also use this plugin in a pre-built bundle from Transloadit's CDN: Edgly. In that case Uppy
will attach itself to the global window.Uppy
object. See the main Uppy documentation for instructions.
Documentation
Documentation for this plugin can be found on the Uppy website.
License
The MIT License.
0.27.5
Released: 2018-09-27
| Package | Version | Package | Version |
|-|-|-|-|
| uppy | 0.27.5 | @uppy/instagram | 0.27.5 |
| @uppy/core | 0.27.3 | @uppy/react | 0.27.5 |
| @uppy/dashboard | 0.27.5 | @uppy/transloadit | 0.27.5 |
| @uppy/dropbox | 0.27.4 | @uppy/tus | 0.27.5 |
| @uppy/form | 0.27.4 | @uppy/url | 0.27.5 |
| @uppy/informer | 0.27.4 | @uppy/webcam | 0.27.4 |
- core: Add
onMount()
and this.parent
to Plugin (#1062 / @arturi) - core: Call
removeFile
on each file when doing cancelAll
(#1058 / @arturi) - dashboard: Fixing “ResizeObserver is not a constructor”, issue #1070, by doing
require('resize-observer-polyfill').default || require('resize-observer-polyfill')
(#1078 / @yoldar, @arturi, @goto-bus-stop) - dashboard: Only show the plus button if
props.totalFileCount < props.maxNumberOfFiles
(#1063 / @arturi) - status-bar: use
uppy-Root
in Status Bar when it’s mounted in DOM (#1081 / @arturi) - docs: added
uppy.off()
info (#1077 / @dviry) - docs: quick start guide, add simple HTML page snippet with Uppy https://community.transloadit.com/t/quick-start-guide-would-be-really-helpful/14605 (#1068 / @arturi)