diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-10-02 20:39:50 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-11-27 21:55:58 -0800 |
commit | 7720ea2a340ab1250da1bdbb39bf8461d8b3db1a (patch) | |
tree | b07cb85c70a93a6544800d4059b6ca254f5c2beb /src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs | |
parent | 6da97434646d590570e9e15100a7825e7473d703 (diff) | |
download | DotNetOpenAuth-7720ea2a340ab1250da1bdbb39bf8461d8b3db1a.zip DotNetOpenAuth-7720ea2a340ab1250da1bdbb39bf8461d8b3db1a.tar.gz DotNetOpenAuth-7720ea2a340ab1250da1bdbb39bf8461d8b3db1a.tar.bz2 |
Style fix.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs | 6 |
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 +} |