47 lines
1.9 KiB
C#
47 lines
1.9 KiB
C#
using Newtonsoft.Json;
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using System.Threading.Tasks;
|
||
using UnityEngine;
|
||
//验证码校验
|
||
public class checkCode : MonoBehaviour
|
||
{
|
||
|
||
public Dictionary<string, string> CreateHeaders()
|
||
{
|
||
if (string.IsNullOrEmpty(MyGlobal.global.loginResponse.Data.access_token))
|
||
{
|
||
Debug.LogWarning("尝试创建请求头时,token 未设置。");
|
||
return new Dictionary<string, string>();
|
||
}
|
||
return new Dictionary<string, string>
|
||
{
|
||
|
||
{ "Authorization","Bearer "+MyGlobal.global.loginResponse.Data.access_token },
|
||
{ "client-info", "{\"platform\":\"ios\",\"phone_product\":\"apple\",\"phone_model\":\"iPhone_8\",\"system_version\":\"12.0\",\"screen_size\":\"750*1334\",\"device_no\":\"e3e277810fff9d955ebdd7037eff51a8\",\"version\":\"1.0.0\"}" }
|
||
};
|
||
}
|
||
public async Task<bool> CheckCode(CheckCodeBody body)
|
||
{
|
||
//CheckCodeBody body = new CheckCodeBody();
|
||
//body.account = "13502712157";
|
||
//body.scene = 0;
|
||
//body.code = "9527123";
|
||
//Debug.Log(JsonConvert.SerializeObject(body) + "入参=========");
|
||
//Debug.Log(JsonConvert.SerializeObject(CreateHeaders()) + "==========头=========");
|
||
string response = await myWeb.SendRequest(myWeb.URL + "/api/captcha/verify", "POST", JsonConvert.SerializeObject(body), CreateHeaders());
|
||
Debug.Log("验证码校验" + response);
|
||
SendCodeResponse sendCodeResponse = JsonConvert.DeserializeObject<SendCodeResponse>(response);
|
||
bool isSucceed;
|
||
if (sendCodeResponse.code == 200) { isSucceed = true; } else { isSucceed = false; }
|
||
return isSucceed;
|
||
}
|
||
}
|
||
//===========================================================================================================================
|
||
public class CheckCodeBody
|
||
{
|
||
public string account;
|
||
public int scene;
|
||
public string code;
|
||
}
|