Questions tagged [filepicker.io]

Filepicker.io is a full file management framework which supports web, iOS and Android platform.

Filepicker.io is a full file management framework which supports web, iOS and Android platform.

Filepicker.io acts as an abstraction layer, offering a simple, elegent api to connect your application to all the third-party services your users love. When you request a file to import into your application, Filepicker.io guides the user through selecting a file, authenticating any necessary third-party services. Once the user chooses a file, we create a unique URL that acts as a pointer to that specific file and pass it to your application, allowing you to read from and write to the file.

Documentation

407 questions
1
vote
1 answer

File Picker drag and drop of folder shows error message

We are using filepicker for uploading the file and drag and drop of the folders. and we set the mimetype only for the pdfs as we need only pdf files, and so if we drag and drop the folder, there is a red color error message that only pdfs can be…
Nandini TM
  • 23
  • 3
1
vote
0 answers

File Picker 502 Bad GateWay nginx Error

I am using Filepicker and it was working fine before 3 days! Now if I try to open the FilePicker window it simply shows 502 Bad Gateway error. Any help on this will be highly appreciated
Nandini TM
  • 23
  • 3
1
vote
2 answers

Filepicker IO how to specify a minimum width and hight in upload

I want to be able to set a minimum width and height for images uploaded via the FilePicker Upload dialog box (Minimum size: 1200 x 960 pixels). Ideally there would be an option for this but I cannot seem to find it.
johnnE
  • 169
  • 1
  • 1
  • 11
1
vote
1 answer

Filepicker.io Android - how I can upload file and get response Url?

I have some troubles with integrating Android app with FilePicker.io. I would like to upload photo to my FilerPicker storage and get response url to this image. I do not see any method for doing this. There is example what I need working in web…
Daniel Krzyczkowski
  • 2,732
  • 2
  • 20
  • 30
1
vote
1 answer

Filepicker.io with S3 encryption

I'm using Filepicker.io, hooked up to my own S3 bucket. I'd like to enable server-side encryption on all new files uploaded to the bucket. I followed these instructions http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html to…
Emmett
  • 14,035
  • 12
  • 56
  • 81
1
vote
1 answer

How to create multiple drop pane on same page using filepicker.io

Basically I have a table and each rows have a Image icon which I want to turn into a drop pane. Any example code will be helpful.
openbees
  • 45
  • 7
1
vote
1 answer

Mocking an asynchronous web service in Angular unit tests

I'm building an Angular app, and I'm writing unit tests for it. Yay unit tests. I want to mock a particular web service that I'm using (Filepicker.io), which has both a REST API as well as a Javascript API. In my code I use the Javascript API in…
aidan
  • 1,627
  • 17
  • 27
1
vote
1 answer

Order of files in filepicker.io

We are using filepicker.io to load multiple files into our Ruby-based web application. The file list returned from filepicker.io is in the order in which the uploads completed. Is there a way to get the returned file list to be in the order the…
Mike Ishmael
  • 95
  • 1
  • 5
1
vote
1 answer

Rails - adding a class to filepicker_image_tag with filepicker-rails Gem

Using: gem 'filepicker-rails' I can't seem to add a class like this: <%= filepicker_image_tag @user.photo_url, w: 32, h: 32, fit: 'clip', class: 'my_class' %> This seems like it should be easy. Am I doing this incorrectly, or is it not possible?
kayatela
  • 394
  • 5
  • 21
1
vote
1 answer

Save dataURL as image with Filepicker.io exportWidget

It seems like using the Filepicker.io javascript API you can save a dataURL, but I'm wondering if it's possible to save a dataURL mime-typed as "image/png" with the Filepicker.io export widget? When I attempt this I get an exception: Invalid file to…
jordan
  • 121
  • 1
  • 8
1
vote
1 answer

filepicker.io submitting the form prematurely

I'm using filepicker.io as part of a larger form for my site. I'm not actually storing the file in the form, but I'm storing part of the URI in a hidden input field, with other information that the user fills out in the form. I know that the script…
Wold
  • 952
  • 1
  • 13
  • 25
1
vote
1 answer

Given an S3 path and a valid key and secret, how do I update an objects cache-control headers?

I need to update the headers on files after they are uploaded to S3. I don't have control over the upload process (I'm using the FilePicker.io API which doesn't provide a way to specify the cache-control header as far as I now), they just magically…
Bill
  • 25,119
  • 8
  • 94
  • 125
1
vote
0 answers

File picker not working in IOS

I have a responsive web app which is using Ink to pick image files. It has been working perfectly a couple of days back but now it is working in the computer browser but not in Iphone. Does nayone else has the same error? If you open this…
mohsinali1317
  • 4,255
  • 9
  • 46
  • 85
1
vote
0 answers

InkFilePicker - Upload an already existing S3 File

What I would like to accomplish without having to create a field in my users database table. Let's say user uploads an image, and crops it. Now the final version of that image creates an inkBlob url, and it also stores it to my s3 account. The user…
Perspective
  • 642
  • 5
  • 12
1
vote
1 answer

filepicker.io What happens when some files are complete with pickAndStore, but a user closes the modal?

We are currently using filepicker.io's pickAndStore to allow users to upload multiple files (some small, some big) to a S3 bucket. What happens to files that have completed upload after a user closes filepicker modal? On the javascript-client side…