From 10d23850a291e26cc9f2004461b193c21ad9291a Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 12 Nov 2020 12:11:59 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 564fa2d..4cdf455 100644 --- a/Examples.md +++ b/Examples.md @@ -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); }) ;