IDIS_Server.Console/ReadMe.md

946 B

IDIS Server Console

IDIS 标识解析服务器控制台

指南版本v0.1

未包括所有功能

食用指南

注册:

Clip_20240428_161137.png

WebApi:localhost:5242/api/register

{
  "handle": "88.123.99/202404281606",
  "templateVersion": "1.0",
  "value": {
    "key1": "value1",
    "key2": "value2"
  }
}

查询:

Clip_20240428_161438.png

WebApi:localhost:5242/api/query?key={handle}

删除:

[HttpGet]
	[Route("delete")]
	public async Task<bool> Delete (string handle)
	{
		await _service.DeleteAsync(handle);
		return true;
	}

WebApi:localhost:5242/api/delete?handle={handle}

检查标识码是否存在

[HttpGet]
	[Route("isExist")]
	public async Task<bool> IsExist(string key)
	{
		return await _service.IsExistAsync(key);
	}

WebApi:localhost:5242/api/isExist?key={key}