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
2
votes
0 answers

ink-file-picker bug on Android with upload

I try to use inkfilepicker.com on my project. I have follow this guide: https://developers.inkfilepicker.com/docs/android/ My code is simple but i can't have a valid URL when i pick from gallery or camera. private void selectImage() { …
2
votes
1 answer

Ink filepicker doesn't work with Turbolinks

When you click on a page that has the filepicker button in a Rails app, the button doesn't render. I assume it's because it triggers on window load only. Turbolinks requires a callback for page:load. How to fix/solve?
Daniel Fischer
  • 3,042
  • 1
  • 26
  • 49
2
votes
1 answer

Rails & FilePicker gem - how to obtain metadata of uploaded files?

I am using FilePicker gem and saving files to Amazon S3 bucket. I would like to save metadata of uploaded files into my database, but I stuck how to do that - in the documentation to the gem is written: Accessing FilePicker File with OnChange: When…
user984621
  • 46,344
  • 73
  • 224
  • 412
2
votes
1 answer

Inkfilepicker: Issue showing mobile version in iframe

I'm trying to use "container" attribute pointing to iframe in mobile site version, but inkfilepicker sends desktop content in this case for both desktop and mobile devices. In attribute "container" is removed, I'm getting a new tab with mobile…
Alexander
  • 1,493
  • 2
  • 11
  • 8
2
votes
0 answers

S3 access: 'public' not working for files from internet URLs

I am trying to use ink file picker's library to allow users to upload images to my S3 bucket. This works great for files from the file system, but files from the internet somehow don't have their permissions set correctly, so the returned path is…
2
votes
2 answers

filepicker.io rest api parameters

According to the docs here https://developers.filepicker.io/docs/web/#fpurl-store it is possible to use filepicker.io rest api for storing files. I'm using following code snipper and it works fine: curl -X POST -d…
2
votes
1 answer

Facebook permissions for filepicker.io

Is there any way we can keep facebook permissions as low as possible because right now when a new user uses filepicker to upload images from his facebook account, it shows 2-3 permissions. I'm assuming that its set up as default. But can we reduce…
2
votes
0 answers

How can I force Filepicker.io to send Cache-Control headers to Amazon S3?

I'm using Filepicker.io and Django with the official library and I've noticed two things: The URLs it provides to Django are direct to my S3 bucket, not the Filepicker URLs. It doesn't set any caching on the files it sends whatsoever. Since I'm…
user478250
  • 259
  • 2
  • 9
2
votes
1 answer

filepicker.io : is there a way for passing on access token for facebook photo upload

Currently i am using filepicker.io for uploading photos from facebook as well as desktop. Our application login requires facebook-auth. My specific question is : Is there any way were user does not need to do f-connect again while trying to upload…
sammy_ji
  • 53
  • 1
  • 1
  • 3
2
votes
1 answer

Filepicker.io Web - Disable Inline Styles

I am having some trouble styling filepicker.io widgets for web, specifically filepicker-dragdrop. Is there any way to disable the inline styling and replace them with classes? Something like data-fp-disable-styles or perhaps when using…
Stan Bondi
  • 4,118
  • 3
  • 24
  • 35
2
votes
1 answer

filepicker.io widget doesn't work if inserted after DOM load

I'm just getting integrated with filepicker.io, and I'm using the very first example they provide with a drag-drop widget. If already present in the html when the page loads, the custom input converts correctly. …
cilphex
  • 6,006
  • 6
  • 34
  • 44
2
votes
1 answer

Filepicker Mime Types

thanks for all your help last week. I have two more requests. Can you help me put the mime type that we accept. i.e. .PDF, .AI, .IDD Can we pass the mime type that has been uploaded into an input field as text? I have attached the code we are…
1
vote
0 answers

Flutter ERROR : TypeErrorImpl was thrown while handling a gesture

Hello i was trying to get images from my pc to firebase storage . then saving the url and showing them through the firestore. code for defining final FirebaseStorage _storage = FirebaseStorage.instance; final FirebaseFirestore _firestore =…
1
vote
0 answers

Flutter How to open a File in the Downloads Dir in my emulator?

I am using FilePicker package to open a PDF file from Downloads Dir in my emulator here is a snippet of what am doing here iam using permission_handler package to get the permissions to access emulator files also , i ve added these lines in my…
1
vote
0 answers

Store file to Firebase Storage in Flutter for Flutter Web App

I have been trying to store files to Firebase Storage but couldn't really get it. So, please help me solve this problem I have to store a single image file to Firebase Storage and then get the URL or the file and store it in Realtime Database, all…