M mayahandayani Member Licensed User Sep 20, 2024 #1 Hello, I'm using this https://www.b4x.com/android/forum/threads/upload-file-with-php.39976/page-3#posts to upload an image from contentchooser. My code like this : B4X: Up.doFileUpload(Null,Null,"content://com.android.providers.media.documents/document/image%3A20063","something_url") but it won't be uploaded because the path can't find the image (maybe) any solution how to solve that? thanks
Hello, I'm using this https://www.b4x.com/android/forum/threads/upload-file-with-php.39976/page-3#posts to upload an image from contentchooser. My code like this : B4X: Up.doFileUpload(Null,Null,"content://com.android.providers.media.documents/document/image%3A20063","something_url") but it won't be uploaded because the path can't find the image (maybe) any solution how to solve that? thanks
aeric Expert Licensed User Longtime User Sep 20, 2024 #2 The easiest way is to convert the image or file to Base64 string and post it as request body. Upvote 0