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