是否有使用apiKey一个.NET RallyRestApi方法?(Is there a .NET

2019-10-20 22:42发布

我想有我C#应用程序中进行使用API​​密钥,以拉力赛的连接,但我还没有找到支持它类似于Java方法的方法:

公共RallyRestApi(URI服务器字符串apiKey)

Answer 1:

你可以使用这个语法:

restApi = new RallyRestApi( "_abc123","https://rally1.rallydev.com");

其中“_abc123”的关键是你使用产生的拉力应用程序管理器 。

我注意到,文件没有提到这种身份验证方法,而且依然在老的用户名/密码方式的用户指南但提交被做了几个月前支持ApiKeys。 你必须使用2.0.1版本。



Answer 2:

从来没有听说过拉力赛之前,但在右视标签页 :

RallyRestApi restApi = new RallyRestApi("myuser@company.com", "password",
  "https://rally1.rallydev.com", "1.40");

就在第一页中的文档的拉力工具包.NET 。



文章来源: Is there a .NET RallyRestApi method that uses the apiKey?
标签: .net rally