-android How to use token and session on client and server side

Source: Internet
Author: User

Http://www.software8.co/wzjs/yidongkaifa/6407.html for beginners, the use of tokens and sessions will inevitably be confined to the plight of the development process to know that there is this thing, but do not know why to use him? I do not know the principle, today I will take you to analyze this thing together.
First, let's explain what he means:
1, token of the introduction: token is the client frequently to the server to request data, the server frequently go to the database to query the user name and password and contrast, to determine the correct user name and password, and make the corresponding hints, in such a context, token will emerge.
2, token definition: token is a string generated by the server to make the client request a token, when the first login, the servers generate a token to return the token to the client, the client only need to bring this token to request data, No need to bring the user name and password again.
3, the purpose of using tokens: token is to reduce the pressure on the server, reduce the frequent query database, make the server more robust.
Knowing the meaning of token, we are more specific about why we use him.
Second, how to use token?
This is the focus of this article, here I will introduce the two commonly used methods.
1. Use the device number/device MAC address as token (recommended)
Client: The client obtains the device's device number/MAC address when logging on, and passes it as a parameter to the server.
Server: After the server receives the parameter, it uses a variable to receive it as token in the database, and the token is set to the session, the client each request to be unified interception, The token passed by the client and the token in the server-side session are compared, and if the same is released, the difference is rejected.
Analysis: At this point the client and server are unified with a unique identity token, and each device has a unique session. The disadvantage of this method is that the client needs to take the device number/MAC address as a parameter, and the server side needs to be saved; The advantage is that the client does not need to log in again, as long as the login can be used after one time, as for the time-out problem is the server side to handle, how to handle? If the server's token expires, the server simply queries the token passed by the client to the database and assigns it to the variable token, so that the token's timeout is re-timed.
2. Use Session value as token
Client: The client only needs to carry the username and password to login.
Client: The client receives the user name and password and determines that if it is correct, it returns the local fetch SessionID as token to the client, and the client only needs to bring the requested data.
Analysis: The benefits of using this approach are convenient and do not store data, but the disadvantage is that when the session expires, the client must log back in to access the data.
Third, the use of the process of problems and solutions?
Just now we introduced two ways to use token, but in the process of use we also have a variety of problems, token the first method we hide a bad network or concurrent requests will result in multiple repeated data submission problem.
The solution to this problem: apply the session and token so that it can be resolved, how to apply it? Take a look at this explanation:


This is the solution to duplicate submissions.
Summary: The above is the development of the use of tokens and a summary of the session, if there is improper description, please correct me, I will promptly correct and thank, I know there are more and better ways to use,

-android How to use token and session on client and server side

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.