Updated Examples (markdown)

Namhyeon Go 2020-11-12 12:12:12 +09:00
parent 10d23850a2
commit 0ac1a258c7

@ -30,7 +30,7 @@ HTTP.create()
.setContentType("application/x-www-form-urlencoded") .setContentType("application/x-www-form-urlencoded")
.setBearerAuth(token) .setBearerAuth(token)
.setUseCache(false) .setUseCache(false)
.get(apiUrl + "myproject/items/mycollaction", function(res) { .get(apiUrl + "myproject/items/mycollection", function(res) {
alert(res.name); alert(res.name);
}) })
; ;