Updated Examples (markdown)

Namhyeon Go 2020-11-12 12:11:59 +09:00
parent cb8f4e5815
commit 10d23850a2

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