下面是我的 IBM Watson 文档转换代码。当我尝试在 Python 中运行脚本时,我不断收到以下错误消息。我在下面的代码中有我的用户名和密码 XXXX,但我复制并粘贴了我的活动用户名和密码,所以我不知道是什么导致了凭证问题。任何帮助,将不胜感激。
watson_developer_cloud.watson_developer_cloud_service.WatsonException:未经授权:由于凭据无效,访问被拒绝
import json
from os.path import join, dirname
from watson_developer_cloud import DocumentConversionV1
document_conversion = DocumentConversionV1(
username="XXXXXXXXXXX",
password="XXXXXXXXXXXXXXXXX",
version='2015-12-15')
with open(join(dirname(__file__), 'a16-23019_2nq.htm'),
'r') as document:
config = {'conversion_target':DocumentConversionV1.NORMALIZED_HTML}
print(document_conversion.convert_document(
document=document, config=config, media_type='text/html').content)