Giter Site home page Giter Site logo

Comments (5)

LBognanni avatar LBognanni commented on July 28, 2024 1

For anyone else having this problem: the underlying issue is that ExpressOIDC in okta-oidc-middleware is not immediately ready for use - instead it fires a ready event that you must wait for.

This is annoying but not impossible to do in serverless: instead of just exporting serverless(app) do:

const waitForOkta = function(){
  return new Promise((resolve, reject) => {
    oidc.on('ready', () => {
      resolve();
    });
  });
}

module.exports.handler = async (event, context) => {
  await waitForOkta();
  let slsHandler = serverless(app);
  const result = await slsHandler(event, context);
  return result;
};

This worked up to a point for me, but then a slew of other errors started appearing.

What worked for me, was switching from okta-oidc-middleware to express-openid-connect which was soooo much easier to work with!

from okta-nodejs-aws-lambda-example.

kpeters-cbsi avatar kpeters-cbsi commented on July 28, 2024 1

I ended up doing my UI in Angular, served by CloudFront, and my backend in Lambda. :)

from okta-nodejs-aws-lambda-example.

Abhi-CogniDev avatar Abhi-CogniDev commented on July 28, 2024 1

What worked for me, was switching from okta-oidc-middleware to express-openid-connect which was soooo much easier to work with!

I'm trying to get the express-openid-connect to work but not able to get the login flow completed..
if possible can you please share your express-openid-connect implementation

from okta-nodejs-aws-lambda-example.

leebrandt avatar leebrandt commented on July 28, 2024

Generally, you need to load your NPM modules to Lambda. Here is a SO post to help with that.

https://stackoverflow.com/questions/34437900/how-to-load-npm-modules-in-aws-lambda

from okta-nodejs-aws-lambda-example.

kpeters-cbsi avatar kpeters-cbsi commented on July 28, 2024

My NPM modules are in Lambda. Serverless handles that.

from okta-nodejs-aws-lambda-example.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.