I am using Kinvey with Backbone JS. When I do a fetch, with Users, Kinvey shows a 401 authorization error. I am not sure how to make the GET request but this is what I have tried so far:
var Users = Backbone.Collection.extend({
url: '//baas.kinvey.com/appdata/XXX/pplicants/YYY'
});
Here XXX is my appkey and YYY is the _id of the data I am trying to fetch. pplicants.JSON is the name of the file I am trying to fetch. What am I doing wrong?