From fe32d44336aabef2f5a6ccd3ded37a6638cdd777 Mon Sep 17 00:00:00 2001 From: Matt Zabriskie Date: Thu, 28 Aug 2014 11:44:22 -0600 Subject: [PATCH] Updating README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7536fb8..b8affdc 100644 --- a/README.md +++ b/README.md @@ -103,9 +103,13 @@ When using the alias methods `url`, `method`, and `data` properties don't need t firstName: 'Fred' }, + // `withCredentials` indicates whether or not cross-site Access-Control requests + // should be made using credentials withCredentials: true, - responseType: 'json' // default + // `responseType` indicates the type of data that the server will responsd with + // options are 'arraybuffer', 'blob', 'document', 'json', 'text' + responseType: 'json' } ```