Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 3.45 KB

authenticating.md

File metadata and controls

27 lines (18 loc) · 3.45 KB

Authenticating

Documentation

When authenticating screen opened. Specification
{
"name": "screen_opened"
"screen_name": "authenticating_screen"
}
After user clicks log in, authentication started.
{
"name": "action_start"
"item_name": "authentication"
"screen_name": "authenticating_screen"
}
When application gets access token and authentication finished with success.
{
"name": "action_finished"
"item_name": "authentication"
"success": true
"screen_name": "authenticating_screen"
}
When application doesn't get access token and When authentication finished with failure.
{
"name": "action_finished"
"item_name": "authentication"
"success": false
"screen_name": "authenticating_screen"
"error_message": "Some error message."
}
When get access token started.
{
"name": "action_start"
"item_name": "get_access_token"
"screen_name": "authenticating_screen"
}
When get access token finished with success.
{
"name": "action_finished"
"item_name": "get_access_token"
"success": true
"screen_name": "authenticating_screen"
}
When get access token finished with failure.
{
"name": "action_finished"
"item_name": "get_access_token"
"success": false
"screen_name": "authenticating_screen"
"error_message": "Some error message."
}}