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

Receiving type cast error when selecting file from library using the FilePicker package

I am creating an app that uses FilePicker to get images from the user's gallery but I am receiving type cast errors. lib/widgets/rounded_image.dart:53:34: Error: The argument type 'PlatformFile' can't be assigned to the parameter type…
Milie
  • 374
  • 1
  • 6
  • 22
1
vote
1 answer

PlatformException, Invalid Argument after trying to mock file_picker for integration test, Flutter

I already use file_picker in my apps, and now I create an integration test. I've been looking for a way to mock file_picker or dependencies, and this is the result: import 'dart:io'; import 'dart:typed_data'; import…
1
vote
0 answers

import sqlite database file in flutter app

I want to import sqlite database file from phone local storage to flutter application storage using button in application? Here is my code in details: call _pickFile() method here var importDbBtn = ConstrainedBox( constraints: const…
1
vote
0 answers

What's the best way to revert an overwritten native object to original in Javascript?

I've discovered that cordova-plugin-file overwrites the File object so that it can do some fancy stuff behind the scenes. This is generally fine in Cordova, but I've also discovered that FileStack (another dependency of my project) really needs that…
Dom Ramirez
  • 2,132
  • 2
  • 23
  • 29
1
vote
0 answers

Is it possible to use filestack in cordova

I'm using filestack to upload files, but just realized it doesn't seem to work in cordova, though it works fine in safari mobile. Is there a workaround or recommended solution?
cwohlman
  • 763
  • 6
  • 21
1
vote
1 answer

Rails button options hash for API not working

I am using the FileStack API and filepicker gem. According to the documentation (http://www.rubydoc.info/github/Ink/filepicker-rails/master/FilepickerRails/ApplicationHelper:filepicker_save_button) the save button takes an options hash. However,…
user3318660
  • 303
  • 1
  • 3
  • 17
1
vote
1 answer

Rails efficient way to store JavaScript object to Model?

I am using the FileStack API and the file picker gem (https://github.com/Ink/filepicker-rails). I have an Attachment model that has a :title as a string. When a file is uploaded, the URL from the FilePicker API is stored as the :title. But the gem…
user3318660
  • 303
  • 1
  • 3
  • 17
1
vote
0 answers

Multiple image upload to create thumbnail and store original, using filepicker

I am using filepicker.js library to store my images. User can upload a set of images using filepicker.pickMultiple() function. And I use the callback function to pick image urls and iterate through each url from the json response and use crop tool…
raj
  • 5,989
  • 7
  • 30
  • 62
1
vote
1 answer

Materialize Modal + filepicker Modal - Conflict

So I use the following to load a template in a modal (something). Template.something.onRendered(function(){ this.$(".modal-trigger").leanModal(); }); The template has a button in it which when clicked calls the filepicker using the following…
user1487244
  • 121
  • 1
  • 1
  • 9
1
vote
1 answer

Do I have to subscribe for services such as Amazon S3 to use Filepicker?

Bit of a noob here. I was wondering if I have to subscribe to a cloud storage service to use filepicker.io.
user1487244
  • 121
  • 1
  • 1
  • 9
1
vote
1 answer

Rails Filepicker, 3 buttons displaying instead of 1

Using Rails 4.2.4 I generated a scaffold in rails to test out filepicker. Everything seems to be working well except when I hit refresh on the page that has the file picker button, 3 buttons display on the page instead of the original 1. This…
Tommy J
  • 421
  • 2
  • 5
  • 18
1
vote
1 answer

Force user to crop/upload an image to a certain size? Preferably using filepicker

I have users uploading images using filepicker, but I want them to have to upload an image of a certain size (and crop if the image is too big). I could cut it myself, but then it won't look good. Ideally, the user would crop it themselves. I've…
NielMalhotra
  • 1,375
  • 2
  • 13
  • 22
1
vote
0 answers

filepicker.io generate title for uploaded photos

we have developed an application with which we can generate a new album and than upload many photos into it. The generated album is then shown at the page profile filepicker.pickMultiple( { mimetype: 'image/*', maxFiles: 3 }, …
1
vote
2 answers

dynamic file picker.io control doesn't work

I Have Created Dynamic FilePicker Control on Button Click Event of Jquery but the button click event of this dynamic control does not open the filepicker.io popup where files get uploaded on filepicker... Below is the html code by which i have…
Vikrant Satpute
  • 123
  • 1
  • 5
1
vote
0 answers

How to get Cloudfront URL from filepicker rails?

I'm using the filepicker-rails gem and would like to get the Cloudfront URL instead of the Filepicker one. My form looks like this: = f.label :logo_url, "Upload your logo" = f.filepicker_field :logo_url, store_location: "S3", store_access:…
Doug
  • 14,387
  • 17
  • 74
  • 104