-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvasDB.js
28 lines (22 loc) · 843 Bytes
/
canvasDB.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
var request = require("request");
function CanvasDB(url, accessToken) {
this.url = url;
this.accessToken = accessToken;
}
CanvasDB.prototype.put = function (collection, key, value, callback) {
request({
uri: "https://" + this.url + "/api/v1/users/self/custom_data/" + key + "?access_token=" + this.accessToken + "&ns=" + collection + "&data=" + value,
method: "PUT",
}, function (error, response, body) {
callback(JSON.parse(body));
});
}
CanvasDB.prototype.get = function (collection, key, callback) {
request({
uri: "https://" + this.url + "/api/v1/users/self/custom_data/" + key + "?access_token=" + this.accessToken + "&ns=" + collection,
method: "GET",
}, function (error, response, body) {
callback(JSON.parse(body));
});
}
module.exports = CanvasDB;