我编写了一组 Python 函数来与 Bluemix/Watson Concept Insights API交互。我能够生成一个令牌并使用它从服务器获取结果,但结果很糟糕:它远不及我将相同信息插入他们的Swagger 测试实用程序时得到的结果。
我怀疑我发送请求的方式有问题,但我不太清楚是什么。代码如下。首先,来自event_insight_lib.py
:
def importCredentials(filename='credentials.json'):
if filename in [f for f in os.listdir('.') if os.path.isfile(f)]:
data = json.load(open(filename))['concept_insights'][0]['credentials']
return data
def generateToken(filename='credentials.json'):
credentials = importCredentials(filename)
r = requests.get("https://gateway.watsonplatform.net/authorization/api/v1/token\?url=https://stream.watsonplatform.net/concept-insights/api", auth=(credentials['username'], credentials['password']))
if r.status_code == requests.codes.ok:
return r.text
def annotateText(text, token, content_type = 'text/plain'):
base_url='https://watson-api-explorer.mybluemix.net/concept-insights/api/v2/graphs/wikipedia/en-20120601/annotate_text'
headers = {'X-Watson-Authorization-Token': token, 'Content-Type': content_type}
r = requests.post(base_url, headers=headers, data={'body': text})
return r.text
这些方法由以下人员执行event_insight.py
:
token = event_insight_lib.generateToken()
ret = event_insight_lib.annotateText("""long string being concept-analyzed...""", token)
print(ret)
输出差异的完整演示在这里。完整的代码库在这里。我对 Requests 库不是很有经验:在 Pythonic 端的某个地方是否存在细微的错误?
IBM 文档的相关部分在此处。