接口
URL https://api.youku.com/oauth2/token.json HTTP方法 POST 返回格式 json 授权/登录 false
参数
参数 类型 必选 默认值 说明 示例 client_id string true 应用Key grant_type string true 刷新Access Token: refresh_token refresh_token refresh_token string true 刷新Token,用于获取新的access_token
3.1 字段说明
参数 类型 允许为空 说明 示例 access_token string false 用来调用其他已授权的API接口的凭证 expires_in int false access_token有效时长,单位:秒 refresh_token string false 刷新Token,用于获取新的access_token token_type string false 使用access_token访问资源的方式
3.2 JSON
{
"access_token":"11d0b7627154f0dd000e6084f3811598",
"expires_in":"3600",
"refresh_token":"4bda296b570a6bba6ff02944cf10d13f",
"token_type": "bearer"
}