Skip to content

Commit

Permalink
Merge pull request #42 from isprambiente/oidcop
Browse files Browse the repository at this point in the history
some little fix
  • Loading branch information
Giuseppe De Marco authored Sep 29, 2021
2 parents 0188501 + 8ad2499 commit 8be9288
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions example_sp/jwtconnect_python_oidcrp/satosa.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}
},
"port": 8090,
"domain": "127.0.0.1",
"domain": "localhost",
"base_url": "https://example.org",
"httpc_params": {
"verify": false
Expand Down Expand Up @@ -204,8 +204,8 @@
"application_type": "web",
"contacts": ["ops@example.com"],
"token_endpoint_auth_method": "client_secret_basic",
"jwks_uri": "https://127.0.0.1:8090/static/jwks.json",
"redirect_uris": ["https://127.0.0.1:8090/authz_cb/satosa"],
"jwks_uri": "https://localhost:8090/static/jwks.json",
"redirect_uris": ["https://localhost:8090/authz_cb/satosa"],
"response_types": ["code"],
"grant_types": ["authorization_code"],
"allowed_scopes": ["openid", "profile", "email", "offline_access"],
Expand Down Expand Up @@ -249,7 +249,7 @@
},
"webserver": {
"port": 8090,
"domain": "127.0.0.1",
"domain": "localhost",
"server_cert": "certs/cert.pem",
"server_key": "certs/key.pem",
"debug": true
Expand Down
4 changes: 2 additions & 2 deletions mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ db.session.createIndex(
### insert a test client like this

````
db.client.insert(
{"client_id": "jbxedfmfyc", "client_name": "ciro", "client_salt": "6flfsj0Z", "registration_access_token": "z3PCMmC1HZ1QmXeXGOQMJpWQNQynM4xY", "registration_client_uri": "https://127.0.0.1:8000/registration_api?client_id=jbxedfmfyc", "client_id_issued_at": 1630952311.410208, "client_secret": "19cc69b70d0108f630e52f72f7a3bd37ba4e11678ad1a7434e9818e1", "client_secret_expires_at": 1662488311.410214, "application_type": "web", "contacts": ["ops@example.com"], "token_endpoint_auth_method": "client_secret_basic", "redirect_uris": [["https://127.0.0.1:8090/authz_cb/satosa", {}]], "post_logout_redirect_uris": [["https://127.0.0.1:8090/session_logout/satosa", null]], "response_types": ["code"], "grant_types": ["authorization_code"], "allowed_scopes": ["openid", "profile", "email", "offline_access"]}
db.client.insertOne(
{"client_id": "jbxedfmfyc", "client_name": "ciro", "client_salt": "6flfsj0Z", "registration_access_token": "z3PCMmC1HZ1QmXeXGOQMJpWQNQynM4xY", "registration_client_uri": "https://localhost:10000/registration_api?client_id=jbxedfmfyc", "client_id_issued_at": 1630952311.410208, "client_secret": "19cc69b70d0108f630e52f72f7a3bd37ba4e11678ad1a7434e9818e1", "client_secret_expires_at": 1662488311.410214, "application_type": "web", "contacts": ["ops@example.com"], "token_endpoint_auth_method": "client_secret_basic", "redirect_uris": [["https://localhost:8090/authz_cb/satosa", {}]], "post_logout_redirect_uris": [["https://localhost:8090/session_logout/satosa", null]], "response_types": ["code"], "grant_types": ["authorization_code"], "allowed_scopes": ["openid", "profile", "email", "offline_access"]}
)
````

0 comments on commit 8be9288

Please sign in to comment.