当我尝试发出新请求以生成新的访问令牌时,我找不到类型" new Secured"。
var authClient = new JsonServiceClient("http://localhost/authentication/")
{
RefreshToken = Request.GetCookieValue("ss-refreshtok"),
RefreshTokenUri = "http://localhost/authentication/access-token"
};
var jwt = authClient.Send(new Secured());
即使我认为我安装了Servicestack.client也无法找到它。但是使用new Authenticate()
可以。
答案 0 :(得分:1)
Secure
请求DTO是受[Authenticate]
属性保护的服务的请求DTO的示例,它不是内置的DTO,您应该替换它来使用您的请求DTO。