First time working with B2C policies. Trying to upload the starter claims package for Local. All of the files give me the same error: Validation failed: 1 validation error(s) found in policy "B2C_1A_PASSWORDRESET" of tenant "mineb2c.onmicrosoft.com".TenantId in the policy xml 'yourtenant.onmicrosoft.com' is not same as the one in login tenant 'mineb2c.onmicrosoft.com'.TenantId in the policy xml 'yourtenant.onmicrosoft.com' is not same as the one in login tenant 'mineb2c.onmicrosoft.com'.
Where is yourtenant.onmicrosoft.com? Why am I getting this error?
Here is one of the smaller ones claims file.:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TrustFrameworkPolicy
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06"
PolicySchemaVersion="0.3.0.0"
TenantId="mineb2c.onmicrosoft.com"
PolicyId="B2C_1A_PasswordReset"
PublicPolicyUri="http://mineb2c.onmicrosoft.com/B2C_1A_PasswordReset">
<BasePolicy>
<TenantId>mineb2c.onmicrosoft.com</TenantId>
<PolicyId>B2C_1A_TrustFrameworkExtensions</PolicyId>
</BasePolicy>
<RelyingParty>
<DefaultUserJourney ReferenceId="PasswordReset" />
<TechnicalProfile Id="PolicyProfile">
<DisplayName>PolicyProfile</DisplayName>
<Protocol Name="OpenIdConnect" />
<OutputClaims>
<OutputClaim ClaimTypeReferenceId="email" />
<OutputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="sub"/>
<OutputClaim ClaimTypeReferenceId="tenantId" AlwaysUseDefaultValue="true" DefaultValue="{Policy:TenantObjectId}" />
</OutputClaims>
<SubjectNamingInfo ClaimType="sub" />
</TechnicalProfile>
</RelyingParty>
</TrustFrameworkPolicy>