From 43bc0ca39be664ffaeea6256a9f2160f5a8f7e40 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Sat, 01 Aug 2020 18:28:30 +0800
Subject: [PATCH] OAuth自动刷新续签Token

---
 ruoyi-ui/src/api/login.js |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/ruoyi-ui/src/api/login.js b/ruoyi-ui/src/api/login.js
index 9aa93ca..f72fe46 100644
--- a/ruoyi-ui/src/api/login.js
+++ b/ruoyi-ui/src/api/login.js
@@ -2,11 +2,11 @@
 
 const client_id = 'web'
 const client_secret = '123456'
-const grant_type = 'password'
 const scope = 'server'
 
 // 登录方法
 export function login(username, password, code, uuid) {
+  const grant_type = 'password'
   return request({
     url: '/auth/oauth/token',
     method: 'post',
@@ -14,6 +14,16 @@
   })
 }
 
+// 刷新方法
+export function refreshToken(refresh_token) {
+  const grant_type = 'refresh_token'
+  return request({
+    url: '/auth/oauth/token',
+    method: 'post',
+    params: { client_id, client_secret, grant_type, scope, refresh_token }
+  })
+}
+
 // 获取用户详细信息
 export function getInfo() {
   return request({

--
Gitblit v1.9.3