You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
I'm used to use adal.js and angular in order to authenticate SPA and Azure AD. Now, I'm using ember and I found torii. What I would like to know if there's a setting where I can specify the backend url. For example, I have two separate apps (frontend / backend), and two applications on azure. I can get the token for the front end app, however when I'm passing the token to the backend app it gives me a 401 error.
for the angular app I usually do like this:
app.config(['$httpProvider', 'adalAuthenticationServiceProvider', function ($httpProvider, adalProvider) {
var endpoints = {
"http://localhost:20440": "https://myazuread.onmicrosoft.com/99999999-9999-9999-9999-999999999999"
};
Hi,
I'm used to use adal.js and angular in order to authenticate SPA and Azure AD. Now, I'm using ember and I found torii. What I would like to know if there's a setting where I can specify the backend url. For example, I have two separate apps (frontend / backend), and two applications on azure. I can get the token for the front end app, however when I'm passing the token to the backend app it gives me a 401 error.
for the angular app I usually do like this:
app.config(['$httpProvider', 'adalAuthenticationServiceProvider', function ($httpProvider, adalProvider) {
var endpoints = {
"http://localhost:20440": "https://myazuread.onmicrosoft.com/99999999-9999-9999-9999-999999999999"
};
}]);
I would like to set the endpoints for the torii lib. Any help?
The text was updated successfully, but these errors were encountered: