From 3d9d7b00d73a824240987d74869a1ae076117afe Mon Sep 17 00:00:00 2001 From: coolaj86 Date: Mon, 23 Apr 2018 22:10:10 +0000 Subject: [PATCH 1/4] update links --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 43f9f34..e0a4397 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ oauth3.js | [issuer.html](https://git.oauth3.org/OAuth3/issuer.html) | [issuer.rest.walnut.js](https://git.oauth3.org/OAuth3/issuer.rest.walnut.js) | [issuer.srv](https://git.oauth3.org/OAuth3/issuer.srv) -| Sponsored by [Daplie](https://daplie.com) +| Sponsored by [ppl](https://ppl.family) The world's smallest, fastest, and most secure OAuth3 (and OAuth2) JavaScript implementation (Yes! works in browsers and node.js with no extra dependencies or bloat and no hacks!) @@ -173,7 +173,7 @@ pushd /path/to/your/web/app # clone the project as assets/org.oauth3 mkdir -p assets -git clone git@git.daplie.com:OAuth3/oauth3.js.git assets/org.oauth3 +git clone git@git.oauth3.org:OAuth3/oauth3.js.git assets/org.oauth3 pushd assets/org.oauth3 git checkout v1 popd @@ -339,12 +339,11 @@ promise = oauth3.request({ url, method, data }); // make an (authorized) arbi // (contacts, photos, whatever) promise = oauth3.api(apiname, opts); // make an (authorized) well-known api call to an audience - // See https://labs.daplie.com/docs/ for API schemas - // Ex: oauth3.api('dns.list', { sld: 'daplie', tld: 'com' }); + // Ex: oauth3.api('dns.list', { sld: 'example', tld: 'com' }); // TODO api = await oauth3.package(audience, schemaname); // make an (authorized) well-known api call to an audience - // Ex: api = await oauth3.package('domains.daplie.com', 'dns@oauth3.org'); + // Ex: api = await oauth3.package('domains.example.com', 'dns@oauth3.org'); // api.list({ sld: 'mydomain', tld: 'com' }); @@ -353,6 +352,10 @@ promise = oauth3.logout(); // opens logout window for t oauth3.session(); // returns the current session, if any ``` +