瀏覽代碼

Merge branch '长阳分支中职' of http://123.57.209.16:3000/bjquanjiang/DigitalScholl into 长阳分支中职

临城职教中职
ndbs 2 年之前
父節點
當前提交
e94de09fbb
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/DataCollection/DataCollectionService.cs

+ 4
- 4
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/DataCollection/DataCollectionService.cs 查看文件

@@ -44,8 +44,8 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop
{
try
{
var refresh_token = _redis.Read<string>("refresh_token");
var access_token = _redis.Read<string>("access_token");
var refresh_token = _redis.Read<string>("refresh_token") == "null" ? "" : _redis.Read<string>("refresh_token");
var access_token = _redis.Read<string>("access_token") == "null" ? "" : _redis.Read<string>("access_token");
if (string.IsNullOrEmpty(refresh_token) || string.IsNullOrEmpty(_redis.Read<string>("access_token")))
{
//用户授权
@@ -75,7 +75,7 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop
private void login()
{
var login_url = InsUrl + "/prod-api/api/web/collect/oauth2/login?grant_type=password&client_id=" + client_id + "&username=" + username + "&password=" + password;
var login_res_str = HttpMethods.Get(login_url);
var login_res_str = HttpMethods.Post(login_url);
var login_res = JsonConvert.DeserializeObject<InsResult>(login_res_str);
var login_data = login_res.data;
string access_token = ((dynamic)login_data)?.access_token;
@@ -95,7 +95,7 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop
var refresh_url =
InsUrl + "/prod-api/api/web/collect/oauth2/refresh?grant_type=refresh_token&client_id=" +
client_id + "&client_secret=" + client_secret + "&refresh_token=" + refresh_token;
var refresh_res_str = HttpMethods.Get(refresh_url);
var refresh_res_str = HttpMethods.Post(refresh_url);
var refresh_res = JsonConvert.DeserializeObject<InsResult>(refresh_res_str);
if (refresh_res == null || ((dynamic)refresh_res)?.code != 200)
{


Loading…
取消
儲存