oauth - WebSphere Liberty Profile OIDC Client URL -


i trying use websphere liberty profile oidc client feature. have feature installed , configured, confused url should using connect it. in wlp knowledge center, shows example this:

https://server.example.com:443/oidc/endpoint/provider_name/authorize 

but when wlp server comes up, see following url in log:

com.ibm.ws.webcontainer.osgi.dynamicvirtualhost              addwebapplication srve0250i: web module openid connect client redirect servlet has been bound default_host. com.ibm.ws.http.internal.virtualhostimpl                     cwwkt0016i: web application available (default_host): http://ibm669-r9v0dvb:11080/oidcclient/ 

i don't know whether use 'oidcclient' (probably) or 'oidc'. don't know put provider_name. tried using id of oidcclient:

<openidconnectclient id="oidcrp"                      clientid="${oauth.client.id}"                      clientsecret="${oauth.client.secret}"                      authorizationendpointurl="${oauth.authorize.endpoint}"                      tokenendpointurl="${oauth.token.endpoint}"                      httpsrequired="false"                      redirecttorphostandport="https://myhost.com:443"> 

i tried connecting this, it's not finding it:

http://ibm669-r9v0dvb:11080/oidcclient/endpoint/oidcrp/authorize?scope=openid&response_type=code&client_id=xxx&redirect_uri=https://myhost.com:443  com.ibm.ws.webcontainer.extension.defaultextensionprocessor  w handlerequest srve0190e: file not found: /endpoint/oidcrp/authorize 

can tell me url should using connect client?

the liberty openidconnectclient feature enables liberty client openid connect provider. configuration parameters inside openidconnectclient information openidconnectprovider, example, openidconnect provider's authorization endpoint , token endpoint. openid connect provider? liberty can configured openid connect provider. if want use liberty openid connect provider, can create liberty instance , enable openidconnectprovider feature.


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -