我想使用Angular> 4应用程序,该应用程序从Keycloak> 4调用REST端点进行登录。
Spoiler:不,我不想使用Keycloak主题,因为Freemarker模板远非静态。我需要一些动态资源和CDN魔术。
所以我使用了“ ... / auth / realms / REALM / protocol / openid-connect / token”端点,并将其作为共鸣:
{
"access_token": "ey…"
"expires_in":60,
"not-before-policy":0,
"refresh_expires_in":1800,
"refresh_token":"ey…",
"session_state": "…"
"token_type":"bearer"
}
我真的无法弄清楚该access_token
或session_state
的处理方法。我也没有找到这样做的例子。