chong

Updated 第三方登录 (markdown)

... ... @@ -5,8 +5,13 @@
第三方登录成功后需要上传第三方信息给服务器
在/after_bind接口提交时增加参数payload。payload的格式为json,其中包括从授权服务器获得的所有key-value内容。
```
{access_token:"access_token",refresh_token:"refresh_token",expires_in:"expires_in",refresh_token_expires:"refresh_token_expires"}
```json
{
"access_token":"access_token",
"refresh_token":"refresh_token",
"expires_in":"expires_in",
"refresh_token_expires":"refresh_token_expires"
}
```
payload=base64(json)
... ...