All Questions
Tagged with image-upload react-native
25 questions
1
vote
0
answers
154
views
Expo React-Native Image upload to firebase in the background
I am trying to make an app that allows users to take pictures with their device camera (ios for now) and then have that auto upload to set of events in firebase. The upload should either happen in the ...
0
votes
1
answer
123
views
Upload the image file in the mongoDB database via React Native Client
I can get the image file in the mongoDB database via postman, but not via React Native Client. I suspect the problem to be in formData configuration.
Thanks so much for feedback
You can find the code ...
0
votes
1
answer
118
views
React native image upload on aws s3 buket
When i have try to upload image i got this error
Error uploading image: [AccessDenied: Access Denied]
import { S3 } from 'aws-sdk';
AWS.config.update({accessKeyId: accesskey,secretAccessKey: ...
-1
votes
1
answer
287
views
How can i upload an image through react native(expo) to azure blob storage? (get real time image and upload that image)
Through form data i'm able to upload the image to azure blob storage through backend. How can i get real time image from expo camera and upload the same to azure blob storage.
enter image description ...
0
votes
1
answer
567
views
firebase storage image upload fails the first time, but subsequent upload attempts load
so, I'm new to react native and firebase storage and I am trying to upload images to storage which fails the first time but if I try immediately afterwards it works with no issues at all and can see ...
1
vote
0
answers
96
views
React Native + Spring Boot upload image error
I'm trying to upload image to spring boot server.
But i get error
Required request parameter 'info' for method parameter type
MemberInfoDto is not present
When i removed info, 'image' is not present ...
0
votes
1
answer
638
views
Getting Download URLs from Firebase Storage on Multiple Image Upload Using Promise.all() in React Native
I am trying to get the download URLs of an array of images that are uploaded to firebase storage. I am having difficulties pushing the download URLs into the downloadURLs array in state.
The values ...
1
vote
0
answers
1k
views
react-native-image-picker launchImageLibrary unable to load photos
I am trying to upload an image using react-native-image-picker like this:
import {launchImageLibrary} from 'react-native-image-picker';
const handleChoosePhoto = () => {
launchImageLibrary({}, ...
0
votes
0
answers
412
views
Can't upload images using `apollo-upload-client` to graphql server `graphql-upload`
I'm trying to upload images from react-native application to apollo-server but I get the following error:
message: "Variable "$photo" got invalid value { uri: "file:///data/user/0/...
1
vote
1
answer
5k
views
Is there any way to check a image size before uploading in react native?
I am currently using image picker and image manipulator in my project for uploading and compressing the image. But I want to show user that he cannot upload image greater than any particular size(let'...
0
votes
1
answer
1k
views
How to capture and render multiple images by camera (react native image picker) in react native app
I want to capture and render 3 different different images In react native app. how can I do this. now I am able to click image but when I click image then same image is rendering 3 times but I want to ...
0
votes
2
answers
5k
views
How to upload image as binary in react native
this is from post man
in react native how can i convert image and upload it to server as binary
this is my code i try to use form data insted of header but still not working
the upload work but the ...
0
votes
1
answer
729
views
Image upload with axios react native android
I am trying to upload image to an API the iOS version is working good but there is problem in android, My code is bellow.
const uploadUri =
Platform.OS === 'ios'
? uploadImageFile.replace('...
0
votes
1
answer
211
views
React native image upload error with Axios :Network error
React-Native version 0.63I am using Axios with Image upload to backend but getting error [Error:Network error ]
0
votes
1
answer
795
views
How to upload images to firebase using expo?
This is my code I took from github expo examples https://github.com/expo/examples/tree/master/with-firebase-storage-upload to upload images to Firebase storage.
const pickImage = async () => {
...