URL: social/login/{provider} Method: get Response Format: JSON Description: Gets redirected by the provider to this route, which in change redirects to ‘/social/auth?token=’, from which token has to be obtained. Parameters: None
Category: Internal API
Active Social Login Providers
URL: v3/api/active-providers Method: GET Response Format: JSON Description: Gets a list of active social logins Parameters: None Response: { “Success”:true, “Data”: {“providers” :[‘google’, ‘facebook ’] }}
Forgot Password
URL: v3/api/password/email Method: post Response Format: JSON Description : Sends set password link to the given email ID if that email is register Parameters: Name Data Type Required / Optional Description email String Required Password reset token which is sent as email Response: { “success”: true, “message”: “We can’t find a user with that email […]
Get user by token
URL: v3/api/get-user-by-token Method: GET Response Format: JSON Description : In case of social login, it is only token that has sent to the frontend. So this API provides user details after giving that token. Parameters: Name Data Type Required / Optional Description token String Required token Success Response: { “success”: true, “data”: { “user”: […]