Upload and Retrieve the Temporary File - React Native
In this guide, we'll demonstrate how to upload and retrieve files from the VideoSDK's temporary file storage system.
uploadBase64File()
-
By using
uploadBase64File()function ofuseFilehook, you can upload your file to Videosdk's Temporary storage. -
The
uploadBase64File()function only works withbase64. Therefore, it is necessary to convert your file intobase64format. -
You have to pass
base64Data,token,fileNameas parameter inuploadBase64File()function. -
The function will return the corresponding
fileUrl, which will use to retrieve the file.
const { uploadBase64File } = useFile();
async function uploadFile() {
const base64Data = "<Your File's base64>"; // Convert your file to base64 and pass here
const token = "<VIDEOSDK_TOKEN>";
const fileName = "myImage.jpeg"; // Provide name with extension here
const url = await uploadBase64File({ base64Data, token, fileName });
console.log("fileUrl", url);
}
fetchBase64File()
-
By using
fetchBase64File()function ofuseFilehook, you can retrieve your file from the Videosdk's Temporary storage. -
You have to pass
fileUrlwhich is returned byuploadBase64File()function andtokenas parameter to retrieve file. -
fetchBase64File()will return image in form ofbase64.
const { fetchBase64File } = useFile();
async function fetchFile() {
const url = "<Your FileUrl>"; // Provide fileUrl which is returned by uploadBase64File()
const token = "<VIDEOSDK_TOKEN>";
const base64 = await fetchBase64File({ url, token });
console.log("base64", base64);
}
The file stored in the system will be automatically deleted once the current room/meeting comes to an end.
Got a Question? Ask us on discord

