Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pass extra parameters in ADAL return URL

I am using ADAL to authenticate a web app registered in Azure. Basically I am following this link

Is there any way I can pass additional parameters to CatchCode function. For example, lets say I need to provide CatchCode with ID of the currently selected item in database.

Any idea?

like image 346
Garima Avatar asked Oct 26 '25 22:10

Garima


1 Answers

In your sign-in request URL, there's a state querystring parameter which gets returned along with the response. You can use this to pass the information your application needs when a user is returned back to your application after signing in. You can read more about this here: https://msdn.microsoft.com/en-us/library/azure/dn645542.aspx.

like image 71
Gaurav Mantri Avatar answered Oct 28 '25 11:10

Gaurav Mantri