Questions tagged [stormpath]

Stormpath is a paid scalable cloud-based user management and authentication service with free tier (for developers). With multi-platform API Stormpath provides a common role-based access control & authentication framework that can be used across disparate applications and multiple programming languages. It also provides an on-line management console and workflows for user registration and password recovery.

Stormpath is the first user management and authentication service for developers. A scalable cloud-based API, Stormpath provides a common role-based access control & authentication framework that can be used across disparate applications and multiple programming languages. It also provides an on-line management console and workflows for user registration and password recovery.

255 questions
6
votes
2 answers

Multiple WebSecurityConfigurerAdapter: one as a library, in the other users can add their own security access

I am creating a Spring Security configuration to be used as a library by any developer who wants to create a Stormpath Spring application secured by Spring Security. For that I have sub-classed WebSecurityConfigurerAdapter and defined the Stormpath…
mario
  • 1,154
  • 8
  • 13
6
votes
2 answers

How do i integrate jhipster with Stormpath

I am trying to use jhipster. The sample works nice out of the box. I want to configure it to use Stormpath User management - https://github.com/stormpath/stormpath-spring-security/wiki I could not find any blog/article on ensuring the Spring Server…
appbootup
  • 9,537
  • 3
  • 33
  • 65
6
votes
1 answer

Should I consolidate session management using Sails.js and Stormpath?

I'm investigating using Stormpath for our user Management. I currently have a Sails.js application which uses Node.js / Express.js. Currently, session management is handled by the default Sails.js framework, which relies heavily on Express' session…
Shaheen Ghiassy
  • 7,397
  • 3
  • 40
  • 40
5
votes
2 answers

Retrieving the organization of a user in Stormpath in .Net Core?

I have an application setup with the Stormpath middleware for authentication. I also have my account setup to use the group per organization model. It appears to login and everything, but I'm struggling with finding a reasonable way to get the…
5
votes
1 answer

disable stormpath's Create account option in the login screen

I want to disable the create account in the stormpath login screen. The call to the api should already be made from a user authenticated to the app. I tried setting stormpathEnableRegistration to false but the registration functionality is still…
Will Lopez
  • 2,089
  • 3
  • 40
  • 64
4
votes
3 answers

How to use the http post method on ionic 2 and Angular 2?

I am now creating the Ionic 2 app to register and authenticate to Stormpath. When I registered the user I used the http post method. Following function is in provider there. register(username: string, email: string, password: string, givenname:…
Peter Berzins
  • 51
  • 1
  • 3
4
votes
2 answers

apiKey key ID and secret is required even though they're there in express-stormpath

I'm trying to use express-stormpath on my Heroku app. I'm following the docs here, and my code is super simple: var express = require('express'); var app = express(); var stormpath = require('express-stormpath'); app.use(stormpath.init(app, { …
arete
  • 711
  • 6
  • 8
4
votes
2 answers

trying to implement oauth /token based login using stormpath

My code : from stormpath.api_auth import ApiRequestAuthenticator import base64 application = app.stormpath_manager.application account = application.accounts[0] # random account …
WebQube
  • 8,510
  • 12
  • 51
  • 93
4
votes
2 answers

Flask-Stormpath Token based authentication

I am trying to implement token based authentication for my Flask REST API. I am using Stormpath as my third-party authentication service. I looked into flask-stormpath built on top of flask-login. Looks like it uses password based authentication as…
Vasif
  • 1,393
  • 10
  • 26
4
votes
1 answer

Create Stormpath user and assign to group in one call

I'd like to submit the user creation request with the group but not sure how to do that in express-stormpath. Right now I use the pre- and post-registration handlers to get a field, delete it from formData, pass to res, then set the group on the…
Omar Mir
  • 1,500
  • 1
  • 19
  • 39
4
votes
1 answer

Stormpath for Django Rest Framework

We are using Django Rest Framework to build API's that feed AngularJS apps. The intent is to use Stormpath for oauth2 authentication and for storage of backend authorization information. However, all of the examples that I have found using Stormpath…
John Yetter
  • 251
  • 1
  • 5
4
votes
3 answers

stormpath can't create groups for google sign in directory

Installed stormpath and using google sign in to register and sign in. Now I'm trying to create groups in the google directory in stormpath using this from stormpath.client import Client stormpath_client = Client(id=STORMPATH_CLIENT_APIKEY_ID,…
WebQube
  • 8,510
  • 12
  • 51
  • 93
4
votes
1 answer

Stormpath how to stop a user from registering

I have a stormpath app on my Porfolio website which I use for logging to update my blog/ projects list. I want to remove the ability for a user to register (which they could do by visiting site.com/register). How do I do this? I'm running on Node.js…
4
votes
1 answer

How to search for users by ID and customData in Stormpath

I'm thinking about using Stormpath with it's Java API as a user storage. Looks good, except that I can't search for users. For example, I get this error: Exception in thread "main" com.stormpath.sdk.resource.ResourceException: HTTP 400, Stormpath…
alsdkjasdlkja
  • 1,260
  • 2
  • 14
  • 30
4
votes
1 answer

Stormpath Express: Save customData

I'm running an express server with express-stormpath for auth and to store same custom data about the user. How can I post data to the server and save them to stormpath? Currently my post looks like this: app.post('/post', stormpath.loginRequired,…
brighthero
  • 135
  • 3
  • 12
1
2 3
16 17