Giter Club home page Giter Club logo

Comments (9)

rdegges avatar rdegges commented on July 24, 2024

Basically what you'll want to do is create an express router for all of your routes, then use the stormpath.loginRequired middleware to ensure users are logged in:

var router = express.Router();

router.use(stormpath.loginRequired); // this forces a user to log in

// routes here...
router.get('/', function(req, res) {
  ...
});

Hope that helps =)

from express-stormpath.

rdegges avatar rdegges commented on July 24, 2024

EDIT: Lastly, you need to use your router.

EG:

app.use(router); // at the bottom of your file

from express-stormpath.

jmls avatar jmls commented on July 24, 2024

Thanks for the quick reply. I tried that, but got a "This webpage has a redirect loop" and a very sad face :(

the url has

http://mysite/login?next=%2Flogin#/

from express-stormpath.

rdegges avatar rdegges commented on July 24, 2024

To make it work you must do it exactly like the above. This won't work if you are just doing this on your app object as it'll cause a redirect loop. EG:

var app = express();
app.use(stormpath.init(...));

var router = express.Router();
router.use(stormpath.loginRequired);
router.get('/blah', function(req, res) {
  ..
});

app.use('/', router);

The above is a working example. What's happening is that:

  • Your app object is just initializing stormpath, not requiring it everywhere.
  • Your router object is requiring login for all of it's routes.

from express-stormpath.

jmls avatar jmls commented on July 24, 2024

crap. I'm using strongloop, so there must be some issues / conflicts happening.

from express-stormpath.

rdegges avatar rdegges commented on July 24, 2024

Ah =/ I'm not really familiar with it.

If you want some debugging help you may wanna try emailing our support ([email protected]) and include all your project source code and we can try to help debug things for ya.

from express-stormpath.

jmls avatar jmls commented on July 24, 2024

thanks man. Will do.

from express-stormpath.

dorukeker avatar dorukeker commented on July 24, 2024

Hello,
I am not using the strongloop and I got a similar issue. But I also found the cause in my case. I am sharing here so it might help some.

I was initialising the StormPath after I use my router and it did cause trouble. When I switched places it worked fine.

Here are two of the case.
Not working (giving the redirect loop):

var express = require('express');
var app = express();
var routes = require('./routes/routes');
app.use(routes);
app.use(stormpath.init(....));

Working one:

var express = require('express');
var app = express();
app.use(stormpath.init(....)); // Notice the init is called before routing.
var routes = require('./routes/routes');
app.use(routes);

Hope that helps some one.
Cheers!

from express-stormpath.

lanbau avatar lanbau commented on July 24, 2024

thanks @dorukeker i managed to solve my app's redirect loop error. My routes were above stormpath.init

from express-stormpath.

Related Issues (20)

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.