使用react-native-fetch-blob 來上傳照片
使用Google Cloud Storage 作為測試上傳的API
使用RNFetchBlob.fetch
import RNFetchBlob from 'react-native-fetch-blob'
...
async fetch(){
const result = await RNFetchBlob.fetch(
'POST',
`https://www.googleapis.com/upload/storage/v1/b/staging.auctionmall-53ad1.appspot.com/o?uploadType=media&name=${new Date().getTime()}`,
{
Authorization:
'Bearer <AccessToken>'
},
RNFetchBlob.wrap(uri)
);
}Last updated