Skip to content

Commit

Permalink
update samples with response_mode
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Jul 16, 2019
1 parent ab8b779 commit 4a3966d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ function logMessage(msg){
Oidc.Log.logger = console; // log;
Oidc.Log.level = Oidc.Log.DEBUG;

new Oidc.UserManager().signinCallback().catch(function(err){
new Oidc.UserManager({response_mode:'query'}).signinCallback().catch(function(err){
Oidc.Log.logger.error("error: " + err && err.message);
});
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Oidc.Log.logger = console;
Oidc.Log.level = Oidc.Log.INFO;
new Oidc.UserManager().signinCallback();
new Oidc.UserManager({response_mode:'query'}).signinCallback();

0 comments on commit 4a3966d

Please sign in to comment.