Created
December 29, 2015 15:38
-
-
Save cmcewen/b1ea2464aa88ae32be17 to your computer and use it in GitHub Desktop.
Upload image from React Native to Cloudinary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var CryptoJS = require('crypto-js'); | |
function uploadImage(uri) { | |
let timestamp = (Date.now() / 1000 | 0).toString(); | |
let api_key = 'your api key' | |
let api_secret = 'your api secret' | |
let cloud = 'your cloud name' | |
let hash_string = 'timestamp=' + timestamp + api_secret | |
let signature = CryptoJS.SHA1(hash_string).toString(); | |
let upload_url = 'https://api.cloudinary.com/v1_1/' + cloud + '/image/upload' | |
let xhr = new XMLHttpRequest(); | |
xhr.open('POST', upload_url); | |
xhr.onload = () => { | |
console.log(xhr); | |
}; | |
let formdata = new FormData(); | |
formdata.append('file', {uri: uri, type: 'image/png', name: 'upload.png'}); | |
formdata.append('timestamp', timestamp); | |
formdata.append('api_key', api_key); | |
formdata.append('signature', signature); | |
xhr.send(formdata); | |
} |
I got
{"error":{"message":"Unsupported Objec URL"}}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi i had am new to cloudinary and caught some problem using the preview code. Please someone help me out .. Thanks. Code as below
uploadImage=(img_uri , _imgtype , fileName)=>{
CryptoJS = require('crypto-js');
let timespam = (Date.now() / 1000 | 0).toString();
let api_secret = '{Api Secret}';
let hash_string = 'timestamp=' + timespam + "&upload_preset=" + "{Upload Preset Name}" + api_secret;
let signature = CryptoJS.SHA1(hash_string).toString();
}
turn out it return response "Stream Closed". and i using react-native-image-picker to get the uri, image type and iamge name. that part have no problem