0
Azure에서 노드 js SDK를 사용하여 네트워크 인터페이스를 만들려고합니다.하늘색 노드 Js API - 네트워크 인터페이스 만들기
작동하지 않지만 계속 "요청을 구문 분석 할 수 없습니다"라는 메시지가 표시됩니다. 마이크로 소프트 워드 프로세서는 그다지 도움이되지 않습니다.
요청은 다음과 같습니다
{
"resourceGroupName": "name",
"networkInterfaceName": "another-name",
"properties": {
"location": "eastus2",
"ipConfigurations": [
{
"properties": {
"privateIpAddress": "10.1.10.1"
}
}
]
}
}
응답은 다음과 같습니다
{
"request": {
"id": "7384079f-83a6-459f-b8a9-096f76db97ff",
"url": "/network/networkInterface/",
"method": "POST",
"timestamp": "2017-04-19T07:40:56.022Z"
},
"response": {
"status": {
"code": 400,
"message": "Bad Request"
},
"errors": [
{
"code": "Error",
"message": "Cannot parse the request."
}
]
}
}
ipConfigurations 배열하지 않고, 내가 ipConfigurations를 첨부해야합니다 내용의 응답을받을 수 있습니다.
덕분에, 길 라드
네트워크 인터페이스 생성을위한 코드를 공유 할 수 있습니까? –