C# - 友好速搭 -- 开发文档

友好速搭

API SDK
SDK 介绍 SDK 列表

C#

#Csharp SDK 源码^

yhsd-api-csharp

友好速搭应用开发 CSharp SDK

安装方法

使用 Package Manager Console 安装

Install-Package YhsdApi

使用方法

using System;

namespace YhsdApi.Samples
{
    internal class Program
    {
        private static string appKey = "790a310b972540de86b5c4817f04f459";
        private static string appSecret = "4efdf06458ab4dd09d3972b83de7cd52";
        private static string appRedirectUrl = "http://redirecturl.com";
        private static string code = "d2556efb2ca3425ea48234090cda6c8c";

        private static void Main(string[] args)
        {
            PrivateAppSample();
            PublicAppSample();
            Console.Read();
        }

        /// <summary>
        /// 私有应用API使用方法。
        /// </summary>
        private static void PrivateAppSample()
        {
            var auth = new PrivateAppAuth(appKey, appSecret);
            var token = auth.GetToken();
            var api = new Api(token);
            var response = api.Get("customers");
            Console.WriteLine(response.Content);
        }

        /// <summary>
        /// 公有应用API使用方法。
        /// </summary>
        private static void PublicAppSample()
        {
            var auth = new PublicAppAuth(appKey, appSecret, appRedirectUrl, "read_basic");
            var token = auth.GetToken(code);
            Console.WriteLine(token);
            var api = new Api(token);
            var response = api.Get("customers");
            Console.WriteLine(response.Content);
        }
    }
}
免费领取15天试用
立即注册
联系客服
微信咨询
微信二维码

领取免费试用资格

姓名 *

电话 *

公司名称

所在地区

意向产品

提交

提交成功

你好, XXX女士/先生 ,你的需求已提交成功,后续会有专门的客户经理与你电话联系。谢谢!