Q: How do you manage the sign up?
There is way to integrate your software inside of my sass so the client doesn’t have to register and login in your software? Some way to automatic signup/login every customer when they register/login in my platform so I embed your software in one of my pages so the client never have to go out?
RubenBuijs
Dec 21, 2024A: Hey LFDLW,
Absolutely, ProductLift offers a Single Sign-On (SSO) feature that allows your users to automatically log in without needing to create a new account. This can be achieved in two ways:
1) Sign-in via social media account: This is ready out of the box for Twitter, Facebook, Github, and Google.
2) Sign-in via the Javascript SDK or your server using the account they already have (also known as single sign-on).
For the second option, you generate a token on your server and sign it. Then you send the user to ProductLift using this token. The user is automatically logged into ProductLift using the account details you provided .
The most simple way to implement SSO is by using our Javascript SDK. You should load the SDK in your app and then add an identify script with user data .
If you prefer server-side SSO, you need to get your SSO secret from Settings > Single Sign On in ProductLift. Then generate a JWT SSO token on your end and sign it with your SSO secret
Hope this helps :)
Ruben