We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've tried several approches...
this.adalService.acquireToken('resource'); this.adalService.acquireToken('resource')(); this.adalService.acquireToken('resource')().subscribe(s => console.log(s)); var acquireTokenFn = this.adalService.acquireToken('resource') var result = acquireTokenFn( (token) => { console.log(token); }); result.subscribe( success => { console.log(success) } );
but none seem to give me the token... Please help :)
The text was updated successfully, but these errors were encountered:
Not implemented yet. Working on that.
Sorry, something went wrong.
#11 pull request submitted. until request is accepted, you can find code in branch forked by me
try this.adalService.getCachedToken('xxx') where xxx is clientId. this works for me.
This worked for me: this.adalService.acquireToken(appIdUri).subscribe(p => { toeken = p}) ... the resource is api Uri
No branches or pull requests
I've tried several approches...
this.adalService.acquireToken('resource');
this.adalService.acquireToken('resource')();
this.adalService.acquireToken('resource')().subscribe(s => console.log(s));
var acquireTokenFn = this.adalService.acquireToken('resource')
var result = acquireTokenFn( (token) => {
console.log(token);
});
result.subscribe( success => { console.log(success) } );
but none seem to give me the token... Please help :)
The text was updated successfully, but these errors were encountered: