@@ -233,7 +233,7 @@ public async Task NestedMapWillNotAffectRedirect()
233
233
var transaction = await server . SendAsync ( "http://example.com/base/login" ) ;
234
234
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
235
235
var location = transaction . Response . Headers . Location . AbsoluteUri ;
236
- Assert . Contains ( "https://www.facebook.com/v8 .0/dialog/oauth" , location ) ;
236
+ Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
237
237
Assert . Contains ( "response_type=code" , location ) ;
238
238
Assert . Contains ( "client_id=" , location ) ;
239
239
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/base/signin-facebook" ) , location ) ;
@@ -266,7 +266,7 @@ public async Task MapWillNotAffectRedirect()
266
266
var transaction = await server . SendAsync ( "http://example.com/login" ) ;
267
267
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
268
268
var location = transaction . Response . Headers . Location . AbsoluteUri ;
269
- Assert . Contains ( "https://www.facebook.com/v8 .0/dialog/oauth" , location ) ;
269
+ Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
270
270
Assert . Contains ( "response_type=code" , location ) ;
271
271
Assert . Contains ( "client_id=" , location ) ;
272
272
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/signin-facebook" ) , location ) ;
@@ -301,7 +301,7 @@ public async Task ChallengeWillTriggerRedirection()
301
301
var transaction = await server . SendAsync ( "http://example.com/challenge" ) ;
302
302
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
303
303
var location = transaction . Response . Headers . Location . AbsoluteUri ;
304
- Assert . Contains ( "https://www.facebook.com/v8 .0/dialog/oauth" , location ) ;
304
+ Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
305
305
Assert . Contains ( "response_type=code" , location ) ;
306
306
Assert . Contains ( "client_id=" , location ) ;
307
307
Assert . Contains ( "redirect_uri=" , location ) ;
0 commit comments