为什么我收到 HTTP 404 & sub_code":"S00004? IBM沃森
Why am i getting HTTP 404 & sub_code":"S00004 ? IBM Watson
我正在使用 curl 命令:
curl -X POST --user "apikey:xxx" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data-binary @profile.json \
"https://gateway-fra.watsonplatform.net/personality-insights/api"
IBM 正在给我回复:
x{"code":404,"sub_code":"S00004","error":"Not Found"}%
有人知道为什么吗?
这是我的 .json 文件
https://watson-developer-cloud.github.io/doc-tutorial-downloads/personality-insights/profile.json
尝试使用以下 curl 命令:
curl -X POST --user "apikey:xxxxxxxx" --header "Content-Type: application/json" --header "Accept: application/json" --data-binary @profile.json "https://gateway-fra.watsonplatform.net/personality-insights/api/v3/profile?version=2017-10-13&consumption_preferences=true&raw_scores=true"
用您的 apikey 替换 xxxxxxxx
。以后请避免在public中使用真正的apikey
。任何人都可以使用您的密钥。我已经编辑了问题以隐藏它。
请关注API reference for Personality Insights获取更多信息。
我正在使用 curl 命令:
curl -X POST --user "apikey:xxx" \ --header "Content-Type: application/json" \ --header "Accept: application/json" \ --data-binary @profile.json \ "https://gateway-fra.watsonplatform.net/personality-insights/api"
IBM 正在给我回复:
x{"code":404,"sub_code":"S00004","error":"Not Found"}%
有人知道为什么吗?
这是我的 .json 文件
https://watson-developer-cloud.github.io/doc-tutorial-downloads/personality-insights/profile.json
尝试使用以下 curl 命令:
curl -X POST --user "apikey:xxxxxxxx" --header "Content-Type: application/json" --header "Accept: application/json" --data-binary @profile.json "https://gateway-fra.watsonplatform.net/personality-insights/api/v3/profile?version=2017-10-13&consumption_preferences=true&raw_scores=true"
用您的 apikey 替换 xxxxxxxx
。以后请避免在public中使用真正的apikey
。任何人都可以使用您的密钥。我已经编辑了问题以隐藏它。
请关注API reference for Personality Insights获取更多信息。