Linka Protocol — How to Use
The Linka Protocol was created to standardize the Linka ecosystem, allowing different clients and servers to communicate using the same rules.
Linka uses JSON as the default request/response format because it is simple, lightweight, and supported by almost every programming language.
Patterns
In the account requests:
/login/register
It`s used the pattern
--username(the username of user)
--password(password of user)
and opcional in /register route
--email(email of user)
Example:
{
"username":"username",
"password":"password",
"email":"email"
}