From 72f9f2973a33f36789daafb359280a984e63ea29 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 12 Nov 2020 12:11:03 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Examples.md b/Examples.md index 740076d..46a173a 100644 --- a/Examples.md +++ b/Examples.md @@ -21,4 +21,15 @@ HTTP.create() } }) ; +``` + +``` +HTTP.create() + .setContentType("application/x-www-form-urlencoded") + .setBearerAuth(token) + .setUseCache(false) + .get(apiUrl + "/get_items", function(res) { + alert(res.name); + }) +; ``` \ No newline at end of file