免登录接口
开发者接入积分商城后,用户从客户端进入淘来云的应用,需要通过特定的URL链接来访问。
免登录地址接口,是由开发者服务端开放给客户端,作为淘来云应用入口的一个接口地址。
免登录接口的主要功能是:在用户访问具体应用时,通过接收客户端传过来的参数信息生成对应的免登录URL,并返回给客户端做重定向。 淘来云通过该接口生成的免登录URL同步用户的登录状态。
免登录接口地址
https://open.taolai.com/api/v1/corp/autologin
请求参数(GET请求)
参数 | 是否必须 | 参数类型 | 限制长度 | 参数说明 |
---|---|---|---|---|
uid | yes | string | 255 | 用户的id |
nickname | no | string | 255 | 用户的呢称 |
avatar | no | string | 255 | 用户的头像地址,为空时显示系统头像 |
points | yes | string | 255 | 用户的积分余额 |
corp_key | yes | string | 255 | 企业的唯一标识 |
app_id | yes | string | 255 | 接口appid,应用的唯一标识 |
ts | yes | long | 10 | 时间戳(单位:秒),用于过期验证(5分钟过期) |
sign | yes | string | 255 | sign值的生成规则参考签名规则 |
phone | no | number | 11 | 手机号码 |
redirect_uri | no | string | 255 | 登录成功后的重定向,比如商品详情页为/shopDetail/123456, 其中123456为商品Id |
免登录地址示例
https://open.taolai.com/api/v1/corp/autologin?uid=10000&points=0&corp_key=79823012fa026cd0b7e9365e3fd59d46&app_id=10000&ts=1592229969&redirect_uri=/shopDetail/10000&sign=c4ac634b29071eef3bf8211d2cdc95e0
签名验证工具
为方便开发同学理解签名规则,可以使用下面的淘来云签名工具页面进行验证签名。地址如下:https://www.taolai.com/api/devtools