add discover scope example

This commit is contained in:
AJ ONeal 2017-11-17 17:43:32 +00:00
parent 242c0e3abb
commit 0727c3a6c9
1 changed files with 5 additions and 0 deletions

View File

@ -355,6 +355,11 @@
vm.fn.unlock(); vm.fn.unlock();
}); });
}; };
vm.api.urls.scope = function () {
// TODO do something like this in the oauth3 library
vm.urls.scope = 'https://:host/.well-known/oauth3/scopes/:scope.json\nhttps://example.com/.well-known/oauth3/scopes/example@oauth3.org.json\n\n'
+ 'GET https://example.com/.well-known/oauth3/#/?action=directives&state={{random}}&redirect_uri=https%3A%2F%2Fsso.hellabit.com%2F.well-known%2Foauth3%2Fcallback.html%23%2F&response_type=rpc&_method=GET&_pathname=.well-known%2Foauth3%2Fscopes%2Fexample@oauth3.org.json';
};
vm.api.discoverScopes = function () { vm.api.discoverScopes = function () {
var scopes = vm.form.scopes && vm.form.scopes.split(',') || []; var scopes = vm.form.scopes && vm.form.scopes.split(',') || [];
vm.scopesObj = []; vm.scopesObj = [];