0
My ReserveでApiController
に、BankRedirectアクションのパスを文字列に入れ、Url.Route
を使用しても動作しません。別のアクションからapiのアクションパスを見つける方法
public string GoToBank(string token, string username)
{
string path Url.Route("BankRedirect", new { controller = "Reserve"} , new { userId = "" }))
return path;
}
[Route("BankRedirect")]
[HttpPost]
[BasicAuthenticationFilter]
public async Task<UpdateResult<string>> BankRedirect([FromBody]string userId)
{
}
"予約" は私のコントローラのルートがある - [RoutePrefix(」! Reserve ")] パブリッククラスReserveController:ApiController –