It is a very simple webpage
<html>
<button id="upload_widget" class="cloudinary-button">Select file to upload</button>
<script src="https://widget.cloudinary.com/v2.0/global/all.js" type="text/javascript"></script>
<script type="text/javascript">
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++)
{
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == sParam)
{
return sParameterName[1];
}
}
}
var imageid = GetURLParameter('imageid');
//var myFileName = "myName";
var myUploadWidget = cloudinary.createUploadWidget({
prepareUploadParams: function(cb, params)
{
cb({public_id: imageid})
},
cloudName: "-------your-cloudname-----",
uploadPreset: "----your-upload-preset",
// public_id: myFileName
},
(error, result) => {
if (!error && result && result.event === "success") {
console.log('Done! Here is the image info: ', result.info);
}
});
document.getElementById("upload_widget").addEventListener("click",
function(){
myUploadWidget.open();
}, false);
</script>
</html>