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.
Mark Thien
in order to access my kinvey account from web, I put in config.js file like below:
var config = {
kinvey : {
app : {
key : 'kid_123123123',
secret : '66a1111f62233445502833'
}
}
};
and init it in every js file like below:
var promise = Kinvey.init({
appKey : config.kinvey.app.key,
appSecret : config.kinvey.app.secret
});
if a person get my key and secret then he will be able to do CRUD from my kinvey database.
any solution to this?
Cheers,
Mark