工具型应用 C# 的 code 接收示例

说明:

有赞云工具型应用的开发者在开发对接过程中需要接收 code 码以获取 access_token。本文提供 C# 的 code 接收示例以方便开发者提高对接效率。

参考:

在你的 ASP.NET Core Web Application 项目中添加一个控制器参考如下 demo

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Encodings.Web;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860

namespace CodeDemo.Controllers
{
    public class HelloWorldController : Controller
    {
        // 
        // GET: /HelloWorld/

        public string Index()
        {
            return "This is To obtain code action...";
        }

        // 
        // GET: /HelloWorld/Welcome/ 

        public string Obtain(int code)
        {
            return HtmlEncoder.Default.Encode($"code :{code}");
        }
    }
}

如还有疑问,可在本帖下继续追问,或者到有赞云控制台提交工单咨询喔~感谢您对有赞的支持!