Questions tagged [stormpath-express]
5 questions
2
votes
1 answer
Can I show user data to other users in Stormpath?
I'm trying to integrate Stormpath to an iOS app (Swift), and would like to be able to show one user's data to another user.
In other words, can I show 1 user another user's information by searching my userlist for certain factors (such as age or…

Giveny
- 69
- 10
2
votes
2 answers
I want to use Stormpath, Express.js, and Node.js. Do I want stormpath-express or express-stormpath?
I posted an earlier question ("What do I need to know to transfer a working Node project?") after I had a Node project working on a server, and couldn't get it to work at all on my laptop.
In the course of drafting another comment, I noticed…

Christos Hayward
- 5,777
- 17
- 58
- 113
1
vote
1 answer
API authentication through OAuth2 for "unregistered" users on a web/mobile app
I'd like to implement authentication for unregistered users as well as registered users. As soon as user downloads the mobile app, I'd like them to start using certain parts of the app but still make requests with an access token. My plans was to…

user3211198
- 223
- 1
- 5
- 14
1
vote
1 answer
Node.Js authentication using Stormpath
var auth = {
username: 'user',
password: 'password'
};
application.authenticateAccount(auth, function(err, result) {
result.getAccount(function(err, account) {
console.log('Account:', account);
});
};
I am getting an error TypeError…

Droidr
- 63
- 1
- 2
- 13
1
vote
1 answer
Customizing Stormpath account activation workflow
Strompath default registration workflow supports email verification, we would like to perform SMS OTP verification as our primary business case is targeted at mobile users, would like to know if the below technical flow is possible with it's…

Somasundaram Sekar
- 5,244
- 6
- 43
- 85