当我向大多数API发送请求时。我收到响应错误代码400(错误请求)。 我正在使用c#的语言,并且将匿名类序列化以生成格式。
{
"trigger_id":
"a2k0eGhveDN3M2dtN2I0Y3c3b3BobXBoZW86bXlubmk3eGg4M2Y3eDhoMThucjE0c3dvb3I6MTU1NTk1MTg3NjAxNjpNRVFDSUU4VDFqYmNSVGswdDZRQVVFU3haZk5URTg3MUhMT1ozK003aWdsQ01nckhBaUFac290SncwMmFSSkRWNEQyTFN0eXpGY0QySFREeVI2SVg3clY3ejVlMjFnPT0=",
"url": "https://myapi.com/api/values/service",
"dialog": {
"callback_id": "123",
"title": "Form Test",
"icon_url": "http://www.mattermost.org/wp-content/uploads/2016/04/icon.png",
"elements": [
{
"display_name": "Display Name",
"name": "Name",
"type": "text",
"subtype": "",
"default": "default text",
"placeholder": "Placeholder",
"help_text": "This is a test regular input",
"optional": false,
"min_length": 0,
"max_length": 0,
"data_source": "",
"options": null
},
{
"display_name": "Email",
"name": "youremail@email.com",
"type": "text",
"subtype": "",
"default": "default text",
"placeholder": "placeholder@bladekick.com",
"help_text": "This is a test regular input",
"optional": false,
"min_length": 0,
"max_length": 0,
"data_source": "",
"options": null
},
{
"display_name": "Number",
"name": "Number",
"type": "text",
"subtype": "number",
"default": "",
"placeholder": "",
"help_text": "",
"optional": false,
"min_length": 0,
"max_length": 0,
"data_source": "",
"options": null
}
],
"submit_label": "Enviar",
"notify_on_cancel": false,
"state": "Default state"
}
}
这是我发送的json 请帮助我解决此错误。 附件图片 {{3}}
答案 0 :(得分:0)
好吧,我解决了。我的错误是我发出HTTP请求的方式。
我正在做的事情延迟了请求,并且“ trigger_id”过期了。请记住,“ trigger_id”的使用寿命为3秒。
我的建议是尝试使用不同的方式发送请求,因为我发送的JSON(与您的JSON相同)是正确的。 我的另一项观察是,它显然没有作为“ application / json”正确发送。