Skip to content

Commit

Permalink
https to http, changed client_id
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikos Anestos committed Oct 4, 2017
1 parent 9eb27ae commit 54dce79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions example-dotnet-openid-connect-client/Web.config
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="client_id" value="client-1" />
<add key="client_id" value="client-dotnet" />
<add key="client_secret" value="Password1" />
<add key="redirect_uri" value="https:https://localhost:5443/callback" />
<add key="redirect_uri" value="http:https://localhost:5443/callback" />
<add key="scope" value="openid read" />
<add key="authorization_endpoint" value="" />
<add key="token_endpoint" value="" />
<add key="logout_endpoint" value="https://nordicapis.curity.io/authn/authenticate/logout?redirect_uri=https:https://localhost:5443" />
<add key="logout_endpoint" value="https://nordicapis.curity.io/authn/authenticate/logout?redirect_uri=http:https://localhost:5443" />
<add key="revocation_endpoint" value="" />
<add key="jwks_uri" value="" />
<add key="issuer" value="https://nordicapis.curity.io/oauth/v2/metadata" />
<add key="api_endpoint" value="https://nordicapis-api.curity.io/hello_world" />
<add key="base_url" value="https:https://localhost:5443" />
<add key="base_url" value="http:https://localhost:5443" />
</appSettings>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
<XspParameters Port="5443" Address="127.0.0.1" SslMode="Enable" SslProtocol="Tls" KeyType="Pkcs12" CertFile="" KeyFile="/Users/nikolaosanestos/Desktop/Workshop/certificate.p12" PasswordOptions="Store" Password="12345" Verbose="True" />
<XspParameters Port="5443" Address="127.0.0.1" SslMode="None" SslProtocol="Default" KeyType="None" CertFile="" KeyFile="" PasswordOptions="Store" Password="" Verbose="True" />
<Policies>
<StandardHeader IncludeInNewFiles="True" Text="/*&#xA; * Copyright (C) 2016 Curity AB.&#xA; * &#xA; * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);&#xA; * you may not use this file except in compliance with the License.&#xA; * You may obtain a copy of the License at&#xA; * &#xA; * https://www.apache.org/licenses/LICENSE-2.0&#xA; * &#xA; * Unless required by applicable law or agreed to in writing, software&#xA; * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,&#xA; * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.&#xA; * See the License for the specific language governing permissions and&#xA; * limitations under the License.&#xA; */" />
</Policies>
Expand Down

0 comments on commit 54dce79

Please sign in to comment.