我试图从R编程中调用API,但我在GET方法中获得了成功,但是当我读取Excel文件并将其转换为JSON时却出现了错误。
请在下面找到代码:
JSON应该看起来像这样:
{
"internalId": "Asset Name",
"description": {
"short": "Asset Type",
"long": "Asset Type"
},
"dataType": "numeric",
"optionCode": "1",
"dimension1": null,
"dimension2": null,
}
但是转换后看起来像:
[
{
"internalId": "RAttribute",
"description.language": "en",
"description.short": "R Attribute",
"dataType": "string",
"optionCode": 3
}
]
我从哪里加载的数据集: Dataset
用于加载数据集的代码:
jsonAttributes <- jsonlite::toJSON(Attributes,pretty=TRUE)
print(jsonAttributes)
请在这里帮助。...让我知道是否需要其他信息。