我只是在尝试SAP BTP 的 STI 功能的官方教程。
我只是在 Jupyter Lab 的“Classification_demo”上工作。
STI_BASE_DIR = Path.cwd().parent
config_file_path = "../default_key.json"
connection = sti_functions.get_connection_object(config_file=config_file_path)
sti = sti_functions.STIFunctions(connection)
sti.list_models()
在此之后我得到:
~/opt/miniconda3/envs/ml/lib/python3.7/site-packages/cryptography/hazmat/backends/openssl/backend.py in _handle_key_loading_error(self)
1489 else:
1490 raise ValueError(
-> 1491 "Could not deserialize key data. The data may be in an "
1492 "incorrect format or it may be encrypted with an unsupported "
1493 "algorithm."
ValueError: Could not deserialize key data. The data may be in an incorrect format or it may be encrypted with an unsupported algorithm.
我只是在这里搜索其他答案,但我只是得到类似的东西。说我必须用我的 authlib 改变一些东西。但是我使用的是 SAP 预建的登录方法,那么我怎样才能以正确的方式更改我的授权呢?我的 default_key 应该没问题。
先感谢您!