As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Yes, you’ll need to pass in the *entire* object into the update method. The update method replaces the document identified by `_id` with whatever object you pass in, otherwise you will indeed lose columns.
d
dualpandas
said
over 9 years ago
Thanks, one last thing though, when I upload it now it saves it to the collection but there is no link to downloadURL or anything i can use to embed in my site.
dualpandas
when I use the following to access an image I can see in the Kinvey console, I get a 404 error.
scope.streamFile = function(){
var promise = $kinvey.File.stream('image1');
promise.then(function(file) {
var url = file._downloadURL;
});
}