longportapp / openapi-sdk

LongPort OpenAPI SDK Base.
https://open.longportapp.com
Apache License 2.0
112 stars 11 forks source link

获取历史K线报错 longport.OpenApiException: OpenApiException: (500000) internal error #8

Open zhengxuyu opened 10 months ago

zhengxuyu commented 10 months ago

运行doc中的样例代码报错。 doc中的样例如下:

# 获取标的历史 K 线
# https://open.longportapp.com/docs/quote/pull/history-candlestick
#
# 运行前请访问“开发者中心”确保账户有正确的行情权限。
# 如没有开通行情权限,可以通过“LongPort”手机客户端,并进入“我的 - 我的行情 - 行情商城”购买开通行情权限。
from datetime import date
from longport.openapi import QuoteContext, Config, Period, AdjustType

config = Config.from_env()
ctx = QuoteContext(config)

resp = ctx.history_candlesticks_by_offset("700.HK", Period.Day, AdjustType.NoAdjust, false, date(2023, 1, 1), 10)
print(resp)

其中false写错了,改正后报错

    from datetime import date
    from longport.openapi import QuoteContext, Config, Period, AdjustType

    config = Config.from_env()
    ctx = QuoteContext(config)

    resp = ctx.history_candlesticks_by_offset("700.HK", Period.Day, AdjustType.NoAdjust, False, date(2023, 1, 1), 10)
    print(resp)

报错信息:

    ctx = QuoteContext(config)
longport.OpenApiException: OpenApiException: (500000) internal error
zhengxuyu commented 10 months ago

大佬们帮忙看看为什么?

huacnlee commented 9 months ago

可能是偶发的错误,你现在还有这个问题吗