下面是我的IBM Watson文檔轉換代碼。當我嘗試在Python中運行腳本時,我一直在獲取下面的錯誤消息。我在下面的代碼中輸入了我的用戶名和密碼XXXX,但我已經複製並粘貼了我的活動用戶名和密碼,因此我不知道會導致憑證問題。任何幫助,將不勝感激。Watson文檔轉換
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)
簡單的解決方案。有密碼/用戶名倒退。謝謝。 –