I am using azure Access Control Service (ACS). I am trying to get the list of Identity providers which i was selected for my application. For this i am using the following code From Here:
public ActionResult IdentityProviders(string serviceNamespace, string appId)
{
string idpsJsonEndpoint = string.Format(IdentityProviderJsonEndpoint, serviceNamespace, appId);
var client = new WebClient();
var data = client.DownloadData(idpsJsonEndpoint);
return Content(Encoding.UTF8.GetString(data), "application/json");
}
Can anybody please tell me what is appId and where do i get it?
As per the link you provided you need to get that from here.
https://portal.appfabriclabs.com
Also check for the below line in the link
The
appIdwill be the one you will get after registration