我尝试执行以下API调用
RetrieveRecordChangeHistoryRequest
我试图关注this steps,但我无法复制代码,我收到了一堆错误。
我已经成功安装了Dynamics 365 HelperCode但是开始管理代码我不知道为什么不起作用。 (我有0次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;
}
}
错误
答案 0 :(得分:1)
我猜你错过了重要的事情:按照说明操作。
在您提到的MSDN链接中,这些是至关重要的基本步骤。阅读&当你更换现成的课程时,请遵循宗教信仰。看来这是主要的方法,这就是为什么要打破。
1.在Solution Explorer中,打开Program.cs进行编辑。
&安培;
1.编辑Program.cs文件。
2.将以下属性添加到Program类中 成功连接到Dynamics 365服务器后,将初始化此属性。
private HttpClient httpClient;
3.在Main方法中,添加以下语句。
保持class Program{}
& static void Main()
未受影响。我建议你阅读一篇关于.net和c#