Weidong Diao
Weidong Diao
``` const originStr = '红蓝蓝黄红黄蓝红红黄红'; function sort(str){ let array = str.split(''); let obj = {}; array && array.map(arr => { if (arr === '黄'){ obj['黄'] = obj['黄'] || []; obj['黄'].push(arr)...
I have the same problem. When I set everything ready and run the spring-boot-default app, after I log in, it shows a 500 error with the information: Key with 'kid'...
Thank you, Michele. It runs successfully.
After following the tutorial, I make some change in my pom.xml file. I update the version of com.stormpath.spring showed as followed: com.stormpath.spring stormpath-default-spring-boot-starter 2.0.0-okta Then it has errors that happened...
Hi, Matt, Because in Okta API, it just needs three environment variables: stormpath_base_url, okta_api_token and okta_application_id. So I just change "stormpath.authorized.group.admin" to "okta_application_id". So this problem has solved. However, it...