代码之家  ›  专栏  ›  技术社区  ›  Angelo Canepa

连接到Microsoft Dynamics 365/2016 Web API

  •  1
  • Angelo Canepa  · 技术社区  · 7 年前

    我正在尝试执行以下API调用

    RetrieveRecordChangeHistoryRequest
    

    我正试着跟着 this steps ,但我无法复制代码,因为我遇到了一系列错误。

    我已成功安装Dynamics 365 HelperCode,但开始管理我不了解的代码为什么不起作用。(我在C#方面没有经验)

    using Microsoft.Crm.Sdk.Samples.HelperCode;
    using Newtonsoft.Json;
    using Newtonsoft.Json.Linq;
    using System.Net.Http;
    using System.Net.Http.Headers;
    
    private HttpClient httpClient;
    
    
    private void ConnectToCRM(String[] cmdargs)
    {
        Configuration config = null;
        if (cmdargs.Length > 0)
            config = new FileConfiguration(cmdargs[0]);
        else
            config = new FileConfiguration(null);
        Authentication auth = new Authentication(config);
        httpClient = new HttpClient(auth.ClientHandler, true);
        httpClient.BaseAddress = new Uri(config.ServiceUrl + "api/data/v8.1/");
        httpClient.Timeout = new TimeSpan(0, 2, 0);
        httpClient.DefaultRequestHeaders.Add("OData-MaxVersion", "4.0");
        httpClient.DefaultRequestHeaders.Add("OData-Version", "4.0");
        httpClient.DefaultRequestHeaders.Accept.Add(
            new MediaTypeWithQualityHeaderValue("application/json"));
    }
    
    
    
    Program app = new Program();
    try
    {
        String[] arguments = Environment.GetCommandLineArgs();
    app.ConnectToCRM(arguments);
    }
    catch (System.Exception ex)
    { ; }
    finally
    {
        if (app.httpClient != null)
        { app.httpClient.Dispose(); }
    }
    
    
    private static void DisplayException(Exception ex)
    {
        Console.WriteLine("The application terminated with an error.");
        Console.WriteLine(ex.Message);
        while (ex.InnerException != null)
        {
            Console.WriteLine("\t* {0}", ex.InnerException.Message);
            ex = ex.InnerException;
        }
    }
    

    错误

    1

    2

    3

    4

    1 回复  |  直到 7 年前
        1
  •  1
  •   Arun Vinoth PrecogTechnologies    7 年前

    按照说明操作。

    MSDN 链接,这些是关键但基本的步骤。读取(&A);更换现成的课程时,请虔诚地跟随&似乎主要的方法,这就是为什么打破。

    1、在解决方案资源管理器中,打开程序。cs用于编辑。

    &

    1、编辑程序。cs文件。

    2、将以下属性添加到Program类中。
    成功连接到Dynamics 365服务器后,将初始化此属性。

    private HttpClient httpClient;

    3、在Main方法中,添加以下语句。

    保留 class Program{} & static void Main() 未触及。我建议你读一本好的教程。净值和c#