@@ -229,7 +229,7 @@ public async Task NestedMapWillNotAffectRedirect()
229
229
var transaction = await server . SendAsync ( "http://example.com/base/login" ) ;
230
230
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
231
231
var location = transaction . Response . Headers . Location . AbsoluteUri ;
232
- Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
232
+ Assert . Contains ( "https://www.facebook.com/v14 .0/dialog/oauth" , location ) ;
233
233
Assert . Contains ( "response_type=code" , location ) ;
234
234
Assert . Contains ( "client_id=" , location ) ;
235
235
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/base/signin-facebook" ) , location ) ;
@@ -262,7 +262,7 @@ public async Task MapWillNotAffectRedirect()
262
262
var transaction = await server . SendAsync ( "http://example.com/login" ) ;
263
263
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
264
264
var location = transaction . Response . Headers . Location . AbsoluteUri ;
265
- Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
265
+ Assert . Contains ( "https://www.facebook.com/v14 .0/dialog/oauth" , location ) ;
266
266
Assert . Contains ( "response_type=code" , location ) ;
267
267
Assert . Contains ( "client_id=" , location ) ;
268
268
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/signin-facebook" ) , location ) ;
@@ -297,7 +297,7 @@ public async Task ChallengeWillTriggerRedirection()
297
297
var transaction = await server . SendAsync ( "http://example.com/challenge" ) ;
298
298
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
299
299
var location = transaction . Response . Headers . Location . AbsoluteUri ;
300
- Assert . Contains ( "https://www.facebook.com/v11 .0/dialog/oauth" , location ) ;
300
+ Assert . Contains ( "https://www.facebook.com/v14 .0/dialog/oauth" , location ) ;
301
301
Assert . Contains ( "response_type=code" , location ) ;
302
302
Assert . Contains ( "client_id=" , location ) ;
303
303
Assert . Contains ( "redirect_uri=" , location ) ;
0 commit comments