使用Rally REST API,如何查询和返回* complete * JSON对象?

我正在使用.NET API.完整而言,我的意思是像one这样的JSON(已经格式化,我认为查看它inside the webservice时需要凭据).

实例化Request对象时,只需添加更多字段即可获取?

Request storyRequest = new Request("hierarchicalrequirement")
        {
            /* Fields to Fetch*/
            Fetch = new List<string>() { "Name", "FormattedID", "Children", "Owner", "ScheduleState" }, 
            // keep adding field here...

            /* Add a query - quering the US with ID equals to '_formattedID'*/
            Query = new Query("FormattedID", Query.Operator.Equals, _formattedID)
        };

提前致谢!

编辑
我想通过用户故事ID进行查询,以防万一不清楚.

解决方法:

建立请求时,应在Fetch属性中过滤要获取的字段.

按键:

_rallyAPIMajor
_rallyAPIMinor
_ref
_objectVersion
_refObjectName

始终根据任何请求返回.您可以将Fetch保留为空,并返回所有45个键(“ hierarchicalrequirement”为45个键),也可以过滤所需的键.

上一篇:我如何使用openRawResourcesFd()?


下一篇:我如何使用Android aaptOptions?