【发布时间】:2016-11-18 05:02:04
【问题描述】:
我在尝试将此 JSON 导入谷歌 bigquery 表时遇到此错误 file-00000000:JSON 表遇到太多错误,放弃。行数:1;错误:1.(错误代码:无效) 文件中从位置 0 开始的行中的 JSON 解析错误:file-00000000。遇到没有对象开始的数组开始。 (错误代码:无效)
这是 JSON
[{'instrument_token': 11192834, 'average_price': 8463.45, 'last_price': 8471.1, 'last_quantity': 75, 'buy_quantity': 1065150, 'volume': 5545950, 'depth': {'buy': [{'price': 8471.1, 'quantity': 300, 'orders': 131072}, {'price': 8471.0, 'quantity': 300, 'orders': 65536}, {'price': 8470.95, 'quantity': 150, 'orders': 65536}, {'price': 8470.85, 'quantity': 75, 'orders': 65536}, {'price': 8470.7, 'quantity': 225, 'orders': 65536}], 'sell': [{'price': 8471.5, 'quantity': 150, 'orders': 131072}, {'price': 8471.55, 'quantity': 375, 'orders': 327680}, {'price': 8471.8, 'quantity': 1050, 'orders': 65536}, {'price': 8472.0, 'quantity': 1050, 'orders': 327680}, {'price': 8472.1, 'quantity': 150, 'orders': 65536}]}, 'ohlc': {'high': 8484.1, 'close': 8336.45, 'low': 8422.35, 'open': 8432.75}, 'mode': 'quote', 'sell_quantity': 998475, 'tradeable': True, 'change': 1.6151959167271395}]
http://jsonformatter.org/ 也会给出这个 JSON 块的解析错误。需要帮助了解格式错误的位置 - 这是来自 rest API 的 JSON
【问题讨论】:
标签: json google-bigquery