summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
index bbc3b01..84fabb5 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
@@ -79,7 +79,7 @@ namespace DotNetOpenAuth.AspNet.Clients {
new Dictionary<string, string> {
{ "client_id", this.appId },
{ "redirect_uri", returnUrl.AbsoluteUri },
- { "scope", "email" }
+ { "scope", "email" },
});
return builder.Uri;
@@ -135,7 +135,7 @@ namespace DotNetOpenAuth.AspNet.Clients {
{ "redirect_uri", NormalizeHexEncoding(returnUrl.AbsoluteUri) },
{ "client_secret", this.appSecret },
{ "code", authorizationCode },
- { "scope", "email" }
+ { "scope", "email" },
});
using (WebClient client = new WebClient()) {
@@ -173,4 +173,4 @@ namespace DotNetOpenAuth.AspNet.Clients {
#endregion
}
-} \ No newline at end of file
+}