Onboarding & Verification feature in Superadmin

As Superadmin User, I want to users to be easily onboarded and verified on my marketplace. This means allowing user account verification through, Facebook, Google, Whatsapp, Tiktok. Many people don’t have access to e-mail and use sms/whatsapp.

I know this is available through API but I believe adding it in Superadmin would further Tradly amongst the competition.

Thank you.

Hi @AhsaUllah!
Can you share here how to setup the social auth setup here for website hosted on Tradly?

Our hosted website currently supports Google and Facebook authentication.
From our super admin, you can enable this option
Go to …

setting > mobile integrations > Facebook auth / Google auth

You must save the app id for Facebook authentication and the client id for Google authentication.

To connect Google authentication in a web application, you will need to use the Google OAuth 2.0 API. Here is an outline of the steps you will need to follow:

  1. Go to the Google Cloud Console and create a new project.
  2. Enable the Google+ API for your project.
  3. Create a new OAuth 2.0 client ID for your project. Choose “Web application” as the application type.
  4. In Authorized JavaScript origins you need to put your website url .(example: https://example.tradly.co)
  5. In the “Authorized redirect URIs” field, add the URL of your application where the user will be redirected after they grant permission.(for our wbsite it will be your_domain_name/signin)
  6. Take note of the client ID.
  7. In super admin, you need to put this client ID.

To connect Facebook authentication in a web application, you will need to use the Facebook Login API. Here is an outline of the steps you will need to follow:

  1. Go to the Facebook Developers site and create a new app.
  2. Go to the “Facebook Login” settings for your app and set the “Valid OAuth Redirect URIs” to the URL of your application where the user will be redirected after they grant permission.(for our wbsite it will be your_domain_name/signin)
  3. Take note of the App ID and App Secret that are generated for your app. You will need these later.
  4. In superadmin save this app ID .

For more details can read these 2 articles:

2 Likes