我正在尝试使用Pivotal Tracker API使用python发布故事。我可以使用python请求模块这样做。以下是我可以用来创建新故事的示例代码:
payload = {"name":"Create story w/create label"}
requests.post('https://www.pivotaltracker.com/services/v5/projects/xxxxxx/stories', data=payload4, headers={'X-TrackerToken':token}).json()
输出为
{u'created_at': u'2015-03-04T18:47:28Z',
u'current_state': u'unscheduled',
u'id': xxxxxx,
u'kind': u'story',
u'labels': [],
u'name': u'Create story w/create label',
u'owner_ids': [],
u'project_id': xxxxxx,
u'requested_by_id': xxxxxx,
u'story_type': u'feature',
u'updated_at': u'2015-03-04T18:47:28Z',
u'url': u'https://www.pivotaltracker.com/story/show/xxxxxx'}
大。现在,我想创建一个故事并为其添加标签。根据{{3}}上的POST / projects / {project_id} / stories API,我应该能够按如下方式格式化我的json并运行POST请求:
payload = {"name":"Create story w/create label","labels":[{"name":"orbit"}]}
requests.post('https://www.pivotaltracker.com/services/v5/projects/xxxxxx/stories', data=payload, headers={'X-TrackerToken':token}).json()
然而,我得到以下400响应:
{u'code': u'invalid_parameter',
u'error': u'One or more request parameters was missing or invalid.',
u'general_problem': u"'labels' must be an array of label values",
u'kind': u'error'}
根据我的理解,我格式化有效负载json的方式是正确的,标签资源json格式正确。我不确定错误是在我的结尾还是其他东西。如果知道API的人可以提供一些帮助,那将非常感激。
由于
答案 0 :(得分:2)
解决了它,有一个JSON编码问题。我们从未告诉关键跟踪器我们正在发送JSON。此代码段有效:
data = {
"labels": ["major request"],
"name": "some cool feature",
"description": "solve world hunger",
"comments": ["requested by not the 1%"]
}
headers = {'X-TrackerToken': TRACKER_TOKEN,
'Content-type': 'application/json',
'Accept': 'application/json'
}
return requests.post(url, headers=headers, data=json.dumps(data))
需要告诉API我们正在发送JSON并接受JSON。