@@ -50,7 +50,6 @@ public async Task Flow1_RmaCredential_From_CertTestAsync()
5050 . Create ( clientId )
5151 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
5252 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
53- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
5453 . WithCertificate ( cert , sendX5C : true ) //sendX5c enables SN+I auth which is required for FMI flows
5554 . BuildConcrete ( ) ;
5655
@@ -103,7 +102,6 @@ public async Task Flow2_RmaToken_From_CertTestAsync()
103102 . Create ( clientId )
104103 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
105104 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
106- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
107105 . WithCertificate ( cert , sendX5C : true ) //sendX5c enables SN+I auth which is required for FMI flows
108106 . BuildConcrete ( ) ;
109107
@@ -156,7 +154,6 @@ public async Task Flow3_FmiCredential_From_RmaCredential()
156154 . Create ( clientId )
157155 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
158156 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
159- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
160157 . WithClientAssertion ( ( options ) => GetParentCredential ( options ) ) //This api acquires the FMI credential needed to authenticate
161158 . BuildConcrete ( ) ;
162159
@@ -209,7 +206,6 @@ public async Task Flow4_SubRma_FmiCredential_For_leaf()
209206 . Create ( clientId )
210207 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
211208 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
212- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
213209 . WithClientAssertion ( ( options ) => GetParentCredential ( options ) ) //This api acquires the FMI credential needed to authenticate
214210 . BuildConcrete ( ) ;
215211
@@ -262,7 +258,6 @@ public async Task Flow5_SubRma_FmiToken_From_FmiCred_For_leafTestAsync()
262258 . Create ( clientId )
263259 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
264260 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
265- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
266261 . WithClientAssertion ( ( options ) => GetParentCredential ( options ) ) //This api acquires the FMI credential needed to authenticate
267262 . BuildConcrete ( ) ;
268263
@@ -301,7 +296,6 @@ private static async Task<string> GetParentCredential(AssertionRequestOptions op
301296 . Create ( clientId )
302297 . WithAuthority ( "https://login.microsoftonline.com/f645ad92-e38d-4d1a-b510-d1b09a74a8ca" , true )
303298 . WithExtraQueryParameters ( "dc=ESTS-PUB-SCUS-LZ1-FD000-TEST1" ) //Enables MSAL to target ESTS Test slice
304- . WithExperimentalFeatures ( true ) //WithFmiPath is experimental so experimental features needs to be enabled on the app
305299 . WithCertificate ( cert , sendX5C : true ) //sendX5c enables SN+I auth which is required for FMI flows
306300 . BuildConcrete ( ) ;
307301
0 commit comments