Heim >Backend-Entwicklung >PHP-Tutorial >类似微信微博客户端应用,如何实现让APP通过接口实现登陆一次就不用再次登陆(即登陆一次,就不会过期)?

类似微信微博客户端应用,如何实现让APP通过接口实现登陆一次就不用再次登陆(即登陆一次,就不会过期)?

WBOY
WBOYOriginal
2016-06-06 20:15:541975Durchsuche

常用的HTTP授权机制:

HTTP Basic (用户名和密码登陆)

JWT (Authenticiation Header)

又或者第三方客户端授权机制OAuth2.0(这里不属于我要问的问题)

回复内容:

常用的HTTP授权机制:

HTTP Basic (用户名和密码登陆)

JWT (Authenticiation Header)

又或者第三方客户端授权机制OAuth2.0(这里不属于我要问的问题)

登录时生成一个token给客户端,每次发送数据的时候带上这个token,token和设备做绑定

token有一个有效期,每次后台检查传入的token即将过期,就返回一个新的token

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn