Magical Auth Reference
To perform a Magical Auth 2FA verification you need to the following steps:
- Initiate a 2FA verification session: This is done by sending a request from the user's device or from the backend by providing the user's phone number. The server will detect what verification channel the user is able to perform and initiate the verification process.
- Verify the user: This is done by sending the verification code to the server to check if the user has successfully verified their phone number.
The Magical Auth service is available through the MagicalAuthClient
through the GlideClient
instance.
MagicAuthClient Reference
Methods
1. startAuth
Description:
startAuth
starts the 2FA verification process by sending a request from the user's device or by providing the user's phone number.
Syntax:
def start_auth(props: MagicAuthStartProps = {}, conf: ApiConfig = {}) -> MagicAuthStartResponse:
Parameters:
Parameter | Type | Description |
---|---|---|
props | MagicAuthStartProps | An object containing the start auth properties. |
conf | ApiConfig | An object containing optional API configuration like session. |
MagicAuthStartProps Properties:
Property | Type | Description |
---|---|---|
phoneNumber | string | Optional - The phone number to verify. |
email | string | Optional - The email to verify. |
One of phoneNumber
or email
must be provided.
Returns:
MagicAuthStartResponse
: An object containing the verification status.
MagicAuthStartResponse Properties:
Property | Type | Description |
---|---|---|
type | string | The value can be MAGIC , SMS or EMAIL |
authUrl | string | Optional - The URL to open on the user's device in case of MAGIC type. |
Example:
from glide import GlideClient
def main():
glide = GlideClient()
magic_auth_start_response = glide.magic_auth.start_auth({
"phoneNumber": "+555123456789"
})
if magic_auth_start_response["type"] == "MAGIC":
print(f"Open this URL on the user's device: {magic_auth_start_response['authUrl']}")
else:
print(f"Verification code sent to the user's device using channel {magic_auth_start_response['type']}")
if __name__ == "__main__":
main()
2. verifyAuth
Description:
verifyAuth
checks the code / token received from the user's device to verify the user.
Syntax:
def verify_auth(props: MagicAuthVerifyProps, conf: ApiConfig) -> MagicAuthCheckResponse:
Parameters:
Parameter | Type | Description |
---|---|---|
props | MagicAuthVerifyProps | An object containing the verification properties. |
conf | ApiConfig | An object containing optional API configuration like session. |
MagicAuthVerifyProps Properties:
Property | Type | Description |
---|---|---|
code | string | Optional - The code received from the user's device via EMAIL or SMS. |
phoneNumber | string | Optional - The phone number to verify if SMS or MAGIC. |
email | string | Optional - The email to verify in case of EMAIL |
token | string | Optional - The token received from the user's device in case of MAGIC. |
Two paramters need to be sent based on the type
received from the startAuth
method.
- MAGIC:
token
andphoneNumber
- SMS:
code
andphoneNumber
- EMAIL:
code
andemail
Returns:
MagicAuthCheckResponse
: AMagicAuthCheckResponse
instance.
MagicAuthCheckResponse Properties:
Property | Type | Description |
---|---|---|
verified | boolean | Whether the user is verified. |
Example:
from glide import GlideClient
def main():
glide = GlideClient()
magic_auth_check_response = glide.magic_auth.verify_auth({
"token": "code-from-user-device",
"phoneNumber": "+555123456789"
})
if magic_auth_check_response["verified"]:
print("User verified")
else:
print("User not verified")
if __name__ == "__main__":
main()
Error Handling
Each method in ExampleService
can throw errors under certain conditions. Developers should handle these exceptions as part of their implementation. Common errors include:
InvalidInputError
: Thrown when input parameters do not meet the required format or type.OperationFailedError
: Thrown when an operation cannot be completed successfully due to various issues, such as network problems or service unavailability.
Type Definitions
ApiConfig
This object can be sent to most service apis to override the default configuration like the access token used in the request.
Properties
Property | Type | Description |
---|---|---|
session | Session | An optional session object for authentication and authorization. |
Session
This object represents a user session with an access token, expiration time, and associated scopes.
Properties
Property | Type | Description |
---|---|---|
accessToken | string | The access token for the session. |
expiresAt | number | The expiration time of the session. |
scopes | string[] | An array of scopes associated with the session. |