All Questions
4 questions
0
votes
0
answers
33
views
Invoke EntraID or Okta 2FA on demand after Authenticated Session on certain button clicks
I am looking for suggestion or Approach on the UseCase.
When my app launches, I have customer login to our application through SSO. This could be either Okta or EntraID or Any IDP provider. As they ...
2
votes
1
answer
3k
views
NodeJS: Unable to verify JWT with Okta JWT Verifier
I am trying to verify a JWT token sent from a frontend app using the @okta/jwt-verifier package.I keep getting the below error
JwtParseError: Error while resolving signing key for kid "...
1
vote
1
answer
775
views
Unable to get response of OKTA's ListUsers with Search API via okta-sdk-nodejs Client's listUsers method
Code snippet:
async getUsersByEmail(value) {
try {
return await Promise.all([
oktaClient.listUsers({
search: value,
}),
]).then((values) => {
...
1
vote
2
answers
297
views
Wait for promises to complete before pushing error array of objects to CSV
I am trying to import and delete large numbers of users from Okta while staying within rate limits, and logging any errors to excel. The code below seems to be working, but there is just the issue ...