2

I have implemented SAML support to the backend which is a WebAPI after OKTA authentication.

Now problem is how to establish connection with AngularJS app when the triggering point is browser which directly send response to a WebAPI Action.

Basically, I have to pass info from WebAPI action (Action not triggered by AngularJS app but by browser directly after receiving response) to the AngualrJS front end and load a page with that info.

CuriousBuddy
  • 179
  • 1
  • 8
  • 21

1 Answers1

1

You need to pass the SAMLToken in the querystring to your javascript application. And make sure that your server allow max query string.

Standard Practice

Himal Patel
  • 387
  • 4
  • 19