Updated code to remove requirement of entityID

This commit is contained in:
Brandon Werner 2012-10-21 20:26:13 -07:00
Родитель b38090409d
Коммит 7051becc14
4 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -54,7 +54,7 @@
idpIdentifier = new Guid(entityDescriptor.Split('@')[1]);
}
return new GetOrgIdSpnResult(new Guid(this.AppPrincipalId), this.ApplicationDomain, idpIdentifier, entityDescriptor);
return new GetOrgIdSpnResult(new Guid(this.AppPrincipalId), this.ApplicationDomain, idpIdentifier);
}
}
}

Просмотреть файл

@ -7,11 +7,11 @@
{
private const string Display = "<issuer name=\"{0}\" displayName=\"{0}\" realm=\"{1}\" />";
public GetOrgIdSpnResult(Guid appId, string appDomain, Guid idpId, string entityId)
public GetOrgIdSpnResult(Guid appId, string appDomain, Guid idpId)
{
this.ApplicationId = appId;
this.ApplicationDomain = appDomain;
this.Spn = string.Format("spn:{0}@{1}", appId, idpId);
this.Spn = string.Format("spn:{0}@{1}", appId);
}
public Guid ApplicationId { get; internal set; }

Просмотреть файл

@ -1,8 +1,8 @@
<issuers>
<issuer name="awesomecomputers.onmicrosoft.com"
displayName="Awesome Computers"
realm="spn:7829c758-2bef-43df-a685-717089474505@495c4a5e-38b7-49b9-a90f-4c0050b2d7f7" />
realm="spn:7829c758-2bef-43df-a685-71708947450" />
<issuer name="treyresearchinc.onmicrosoft.com"
displayName="Trey Research Inc."
realm="spn:7829c758-2bef-43df-a685-717089474505@13292593-4861-4847-8441-6da6751cfb86" />
realm="spn:7829c758-2bef-43df-a685-717089474505@" />
</issuers>

Просмотреть файл

@ -101,5 +101,5 @@ $tenantId = (get-msolcompanyinformation).objectId
"Company ID (you will need to put this in the portal): " + $tenantId
"AppPrincipal ID(you will need to put this in the portal): " + $sp.AppPrincipalId
if ($credType = "Asymmetric"){"App Principal Secret: " + $credValue}
"Audience URI: " + $sp.AppPrincipalID + "@" + $tenantId
"Audience URI: " + $sp.AppPrincipalID
""