Questions related to the usage of Filestack. A web service provides an out of the box file uploading widget that will connect to your user’s local drive, Facebook, Instagram, Google Drive, Dropbox, and Web Image Search. Once implemented, you can further customize your file picker with many parameters.
Questions tagged [filestack]
42 questions
2
votes
1 answer
How to upload multiple files with Filestack?
I am using filestack-react package in my CRA app. I can't find any option to upload multiple files the same time. Documentation doesn't say much about it.
Any ideas?

Piotr Brudny
- 654
- 4
- 16
2
votes
0 answers
OpenTok:GlobalExceptionHandler:error OT.exception :: title: Unable to Publish (1500) msg: GetUserMedia +0ms
I have implemented the File stack using Iframe In local code it's working fine when I hosting my project IIS server. It's coming on an error
OpenTok:Publisher:error onStreamAvailableError OT_NOT_SUPPORTED: A constraint specified is not supported…
1
vote
1 answer
"Can't find variable: setIOSParameters" with FileStack and iOS
Our site uses FileStack and we get frequent frontend (JavaScript) errors reported via Sentry on Mobile Safari (lately iOS 16.2, but it's happened with all version).
Can't find variable: setIOSParameters
I cannot reproduce this with either the iOS…

a paid nerd
- 30,702
- 30
- 134
- 179
1
vote
0 answers
Is there a way to generate Filestack's security token in React?
I am trying to use filestack's file picker in my React app. I have the API key, but when I am trying to run getSecurity() via the Frontend code, I am getting an error saying that this function get only be run in Node env.
Any suggestions how one can…

Yaniv Ziperfal
- 73
- 5
1
vote
0 answers
Filestack-js: save square version, adding white space if needed
I'm using Filestack-js and I want users to upload an image with any aspect ratio, then have a squared version ready to use, not cropping the original but adding space if needed.
I've tried with the crop options but it forces the user to select a…

Javier Gbas
- 146
- 1
- 10
1
vote
1 answer
How do I manually cancel / dispose of an RXJava2 Flowable?
I have an Android project that is using the FileStack dependency that is relying on RX Java 2. Specifically, io.reactivex.rxjava2:rxjava:2.1.2. This has not really been a problem up until now as I have been unable to figure out how to specifically…

PGMacDesign
- 6,092
- 8
- 41
- 78
1
vote
0 answers
How to upload large files through filestack?
When I try to upload a large file (+5GB) with the client.upload function of filestack-js in nodejs it throws an error:
RangeError: File size is greater than possible Buffer: 0x7fffffff bytes
I was using this SDK because I read that this allows to…

Angel Rodriguez
- 11
- 1
- 1
1
vote
1 answer
Get video dimensions for Filestack upload
I'm using Filestack API to aupload video files to AWS S3. I would like to get the dimensions of the uploaded video file. Is it possible to get this information from Filestack?
It is returning a file object, but unfortunately it does not include…

Tomasz Cz.
- 315
- 5
- 22
1
vote
1 answer
How to return data of Promise then in angular 2
I'm using filestack for uploading files. I just want to create a service for uploading so that I can reuse in any components. But I have a problem with my code.
This is a function in the service file
uploadFiles(file,size) {
let fsClient =…

Manush
- 1,852
- 7
- 26
- 39
0
votes
0 answers
Filestack Picker UploadInBackground Being Ignored
I'm implementing Filestack using its JavaScript library and want to start the upload process by clicking a button.
According to its documentation, the uploadInBackground is used to facilitate this but in my implementation, it seems to have no…

Sam
- 26,817
- 58
- 206
- 383
0
votes
0 answers
Filestack API send file through using Postman
I am trying to send a PDF file using Postman using the below URL. I have just hidden my key for security purposes.
https://www.filestackapi.com/api/store/S3?key=xxxxxxxxxxxx&filename=test123.pdf
In the body section I have selected "form-data" in…

Sheeban Ahmed
- 1
- 1
0
votes
0 answers
Filestack upload on azure blob container with status InTransit
I'm using filestack-js in my project and i'm sometimes uploading directly from the client like this
const returnValue = client.upload(file, {}, pickerStoreOptions);
So far i was uploading on an amazon s3 bucket, everything was working fine.
But for…

Benoit Bonavia
- 53
- 2
- 9
0
votes
0 answers
Filestack web picker API not recognising files in iCloud Drive on mobile
I am using Filestack in my app to facilitate file uploads.
There is a problem on Apple devices when user try to upload from the Files app.
Files appear greyed out and un-selectable.
I have raised this issue with Filestack who have acknowledged the…

Mick
- 1
0
votes
0 answers
Filestack uploadconfig parameters are ineffective
Am using Filestack JS for uploader in my website. My code is as follows
var options = {
uploadConfig: {
retry: 5,
progressInterval: 1,
timeout: 60000,
onProgress: (e) => {
…

Joseph
- 21
- 5
0
votes
0 answers
How to display the file upload progress status on custom div
Am making a fileuploader in my website with filestack and ran into a requirement on which i need some assistance. My code is as follows...
const apikey = 'ASDSDSJHKJHJHK';
const client = filestack.init(apikey);
var options ={
onUploadDone: (res)…

Joseph
- 21
- 5