diff options
Diffstat (limited to 'samples/OAuthConsumerWpf/App.config')
-rw-r--r-- | samples/OAuthConsumerWpf/App.config | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/samples/OAuthConsumerWpf/App.config b/samples/OAuthConsumerWpf/App.config index 9780370..2f849e4 100644 --- a/samples/OAuthConsumerWpf/App.config +++ b/samples/OAuthConsumerWpf/App.config @@ -3,6 +3,23 @@ <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler" requirePermission="false" /> </configSections> + + <appSettings> + <!-- 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=""/> + <!-- 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="googleConsumerCertificateFile" value=""/> + <add key="googleConsumerCertificatePassword" value=""/> + </appSettings> + + <system.net> + <defaultProxy enabled="true" /> + </system.net> + <log4net> <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"> <file value="Testing.log" /> |