Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image upload issue #12

Open
malikmotani opened this issue Nov 30, 2016 · 7 comments
Open

Image upload issue #12

malikmotani opened this issue Nov 30, 2016 · 7 comments

Comments

@malikmotani
Copy link

11-30 11:22:29.106 5465-5873/alessandro.firebaseChat E/StorageException: StorageException has occurred.
An unknown error occurred, please check the HTTP result code and inner exception for server response.
Code: -13000 HttpResult: 400
11-30 11:22:29.106 5465-5873/alessandro.firebaseChat E/StorageException: The server has terminated the upload session
java.io.IOException: The server has terminated the upload session
at com.google.firebase.storage.UploadTask.zzcyp(Unknown Source)
at com.google.firebase.storage.UploadTask.zzcyo(Unknown Source)
at com.google.firebase.storage.UploadTask.run(Unknown Source)
at com.google.firebase.storage.StorageTask$5.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
at java.lang.Thread.run(Thread.java:856)
11-30 11:22:29.114 5465-5465/alessandro.firebaseChat E/MainActivity: onFailure sendFileFirebase An unknown error occurred, please check the HTTP result code and inner exception for server response.

@doanngoctu95
Copy link

Hey i also make this problem like you, i want to know have you fixed it? and if ok, can you tell me how to fix it? tks so much!!!

@doanngoctu95
Copy link

i've just fixed it, I add permission : WRITE_EXTERNAL_STORAGE
and change TouchImageView into TouchImageView of my project.

@MuniraAwadh
Copy link

i have the same problem, what is the solution?

@equilizer
Copy link

please help same problem

@R33N4K0R
Copy link

R33N4K0R commented Aug 23, 2017 via email

@MuniraAwadh
Copy link

MuniraAwadh commented Aug 23, 2017 via email

@fritexvz
Copy link

fritexvz commented Jun 10, 2019

Your app should be compatible with Android OS 5.1 and newer, because you cannot read/write internal & external storage.

More on:
http://syncthing/syncthing-android#29

Android 4.0, 4.1, 4.2, 4.3, 4.4 and even 5.0 are affected by the issue of Google, not having an option to change the permission for your application.

You cannot even call the request for permission, because it does not exist as is in the stated Android OS versions, while changing the android manifest.xml file does not help either.

Regarding the HTTP error from Firebase, did you copy the right Storage Bucket parameter/URL to the app?
What kind of Storage rules are you using?
Try with these one:

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth!=null;
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants