summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-10-02 20:39:50 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-10-02 20:39:50 -0700
commit1bb8ba4df5dc08eedc427e9925d1a3f5b4c207ee (patch)
tree7e7cac19cadea9861e112dc31f3ebc5e86072493 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
parenta9d2443ee1a35f13c528cce35b5096abae7128f4 (diff)
downloadDotNetOpenAuth-1bb8ba4df5dc08eedc427e9925d1a3f5b4c207ee.zip
DotNetOpenAuth-1bb8ba4df5dc08eedc427e9925d1a3f5b4c207ee.tar.gz
DotNetOpenAuth-1bb8ba4df5dc08eedc427e9925d1a3f5b4c207ee.tar.bz2
Style fix.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs')
-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
+}