@@ -86,7 +86,7 @@ public async Task NestedMapWillNotAffectRedirect()
86
86
var transaction = await server . SendAsync ( "http://example.com/base/login" ) ;
87
87
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
88
88
var location = transaction . Response . Headers . Location . AbsoluteUri ;
89
- Assert . Contains ( "https://www.facebook.com/v2.5 /dialog/oauth" , location ) ;
89
+ Assert . Contains ( "https://www.facebook.com/v2.6 /dialog/oauth" , location ) ;
90
90
Assert . Contains ( "response_type=code" , location ) ;
91
91
Assert . Contains ( "client_id=" , location ) ;
92
92
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/base/signin-facebook" ) , location ) ;
@@ -113,7 +113,7 @@ public async Task MapWillNotAffectRedirect()
113
113
var transaction = await server . SendAsync ( "http://example.com/login" ) ;
114
114
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
115
115
var location = transaction . Response . Headers . Location . AbsoluteUri ;
116
- Assert . Contains ( "https://www.facebook.com/v2.5 /dialog/oauth" , location ) ;
116
+ Assert . Contains ( "https://www.facebook.com/v2.6 /dialog/oauth" , location ) ;
117
117
Assert . Contains ( "response_type=code" , location ) ;
118
118
Assert . Contains ( "client_id=" , location ) ;
119
119
Assert . Contains ( "redirect_uri=" + UrlEncoder . Default . Encode ( "http://example.com/signin-facebook" ) , location ) ;
@@ -150,7 +150,7 @@ public async Task ChallengeWillTriggerRedirection()
150
150
var transaction = await server . SendAsync ( "http://example.com/challenge" ) ;
151
151
Assert . Equal ( HttpStatusCode . Redirect , transaction . Response . StatusCode ) ;
152
152
var location = transaction . Response . Headers . Location . AbsoluteUri ;
153
- Assert . Contains ( "https://www.facebook.com/v2.5 /dialog/oauth" , location ) ;
153
+ Assert . Contains ( "https://www.facebook.com/v2.6 /dialog/oauth" , location ) ;
154
154
Assert . Contains ( "response_type=code" , location ) ;
155
155
Assert . Contains ( "client_id=" , location ) ;
156
156
Assert . Contains ( "redirect_uri=" , location ) ;
0 commit comments