diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-01-07 19:58:42 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-01-07 19:58:42 -0800 |
commit | a9650b0d6b35d10fa0c4386c388db36892b6523a (patch) | |
tree | a5631c8c1e7174760b300f621c6e9ef8f70cf67f | |
parent | 4661dda76196bc9d26a891e920b6718c270997f7 (diff) | |
download | DotNetOpenAuth-a9650b0d6b35d10fa0c4386c388db36892b6523a.zip DotNetOpenAuth-a9650b0d6b35d10fa0c4386c388db36892b6523a.tar.gz DotNetOpenAuth-a9650b0d6b35d10fa0c4386c388db36892b6523a.tar.bz2 |
Applied Google anonymous consumer key and secret to OAuth consumer sample.
-rw-r--r-- | samples/OAuthConsumerWpf/App.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthConsumerWpf/App.config b/samples/OAuthConsumerWpf/App.config index dab6eed..c6156c0 100644 --- a/samples/OAuthConsumerWpf/App.config +++ b/samples/OAuthConsumerWpf/App.config @@ -34,10 +34,10 @@ <!-- Fill in your various consumer keys and secrets here to make the sample work. --> <!-- You must get these values by signing up with each individual service provider. --> <!-- Google sign-up: https://www.google.com/accounts/ManageDomains --> - <add key="googleConsumerKey" value=""/> + <add key="googleConsumerKey" value="anonymous"/> <!-- Google requires either a secret or an X.509 certificate. This sample will use the certificate if it is specified, otherwise it will use the shared secret. --> - <add key="googleConsumerSecret" value=""/> + <add key="googleConsumerSecret" value="anonymous"/> <add key="googleConsumerCertificateFile" value=""/> <add key="googleConsumerCertificatePassword" value=""/> </appSettings> |