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
12
votes
1 answer

Thumbnail from filepicker on iOS

When using the built in UIImagePicker from iOS the developer has access to the thumbnail image used in the picker. Is it possible to access the thumbnail used by Filepicker or otherwise access the ALAsset library URL used by Filepicker?
Kyle
  • 1,662
  • 2
  • 21
  • 38
11
votes
2 answers

Resource interpreted as Document but transferred with MIME type image/jpeg

I'm using Filepicker.io to handle my image uploads on my website. I'm also using FancyBox to display a nice slider. Everything works fine if I use a regular image like: http://i.imgur.com/asdf.jpeg as the . Meaning I click the images and…
sergserg
  • 21,716
  • 41
  • 129
  • 182
10
votes
1 answer

How to convert the file/s upload request made through Filepicker into the similar request made by using simple HTML File control/s in PHP?

I've simple HTML File control/s on my form. It's dynamic in nature, means user can upload one or multiple files. Its HTML is as follows : If I…
PHPLover
  • 1
  • 51
  • 158
  • 311
9
votes
2 answers

Resize and Crop an image using a single convert() action

I'm currently looking to try and create a simple image uploader application which allows a user to load a picture from their desktop, select a crop area (using jcrop) in a specific aspect ratio, and then have filepicker.io crop to the defined…
7
votes
5 answers

How To Display Images Picked From File Picker In Flutter

I am using file picker plugin to pick images I want to display the picked images on the screen below is my code Am able to pick image name and path and display them as text in my app but unable to display them as images, After I display those image…
taha
  • 99
  • 1
  • 3
  • 9
7
votes
2 answers

Filepicker? Upload big files via HTML5 to S3 with no backend

Upload files with multipart/form-data is straight forward and works well most of time until you started to be focused on big files upload. If we look closely what happens during a file upload: client sends POST request with the file content in…
Anatoly
  • 15,298
  • 5
  • 53
  • 77
6
votes
1 answer

Filepicker does not accept mimetype 'text/csv' on windows

I am using filepicker and set the mimetype for the upload on 'text/csv'. It works pretty well on Mac chrome, but on windows it does not. Any idea on how to fix this? Thanks. Ace
Ace Dimasuhid
  • 1,032
  • 11
  • 33
6
votes
2 answers

Filepicker.io - video/* mimetype does not work in Chrome

I've recently noticed a weirdness in Chrome where .mov files aren't being recognized as valid video files when picking. The following JSFiddle illustrates my point http://jsfiddle.net/6aJBM/ You'll need to change the API key obviously. If open the…
Bart Jedrocha
  • 11,450
  • 5
  • 43
  • 53
5
votes
2 answers

filepicker.io - convert() and store vs FPUrl conversions

I have an application where users upload an image and it has to be available in three different sizes (thumbnail, medium size, full size). The image does not need to be modified by my users. It seems there are two options: Option 1: Use image…
momo
  • 975
  • 1
  • 8
  • 8
5
votes
3 answers

Filepicker.io - Limit number of files

I'm wondering if Filepicker.io has the ability to limit the number of files a user can pick/upload? Looking through the docs I can only find maxSize which limits the size of the individual files. Is this currently possible? If not, any plans on…
Bart Jedrocha
  • 11,450
  • 5
  • 43
  • 53
5
votes
2 answers

Have filepicker.io set s3 file as public?

How do I have Filepicker set the proper permissions when uploading to Amazon S3 so that the file is "public" in my s3 bucket?
kels
  • 175
  • 2
  • 7
5
votes
1 answer

Filepicker.io - image conversions preventing video uploads

We're currently working with Filepicker.io to allow users the ability to upload both images and videos. It appears that if we specify image conversions in the Javascript API options, video uploads don't process and instead get stuck at 99.30%. If I…
Bart Jedrocha
  • 11,450
  • 5
  • 43
  • 53
4
votes
2 answers

Why the hidden input fields intended for storing selected file name and file path are not getting generating on a form in following scenario?

I've implemented Filepicker.io in my HTML page for selecting and uploading one or more images. The Filepicker.io functionality for selecting one or multiple files is working fine for me. User is able to select one or more images. Also if user wants…
user4407686
4
votes
1 answer

How can I stream an image from node-webshot to filepicker

Node webshot is used to take a picture of an external website. The node webshot API is: var webshot = require('webshot'); var fs = require('fs'); webshot('google.com', function(err, renderStream) { var file =…
Nearpoint
  • 7,202
  • 13
  • 46
  • 74
4
votes
2 answers

Ink file picker callback called too early. How to detect when the file is available?

When uploading a file using filepicker.io, the filepicker.pick success callback is getting called before the file is actually available. Here's the code: filepicker.pick({ mimetypes: ['image/*'], container: 'modal', …
raindrift
  • 157
  • 1
  • 5
1
2 3
27 28