Reputation: 69
i'm developing web application using Spring Boot,Mysql and StormPath for managing user
i found this Solution
a link!
someone can give me more explication or an example how to do this ?
Upvotes: 0
Views: 65
Reputation: 1162
Each Stormpath Account
has a unique ID (called href
) which looks like this: https://api.stormpath.com/v1/accounts/3Yrc1TJ2sBFldRtu6nfzf2
.
In your MySQL database you will need to have an ID column where you will store the same ID. That why you will be able to relate the Stormpath Account with the MySQL account.
Upvotes: 0