Clarifai客户要求客户秘密和身份证明

时间:2017-07-27 04:46:14

标签: javascript authentication clarifai

我正在设置我的初始js文件,但是在构建中我收到一个错误,客户端现在需要我的客户端密码和客户端ID。有点奇怪的是,当我第一次构建我的应用程序时,所有初始API请求都去了通过api键。我可以在clarifai预览界面上看到我上传的+培训图片,所以我知道它们已成功完成。从那时起,每次通话都失败了。不确定我在哪里得到客户机密码和身份证,因为文档只提供了一个api密钥。

// Require the client
const config   = require('../config/config');
const Clarifai = require('../../node_modules/clarifai/src');

// initialize with your api key. This will also work in your browser via http://browserify.org/
const app = new Clarifai.App({
  apiKey: config['CLARAFAI_API_KEY']
});

正如网站上所述......

After creating your API Key, you are ready to make API calls. If you are using a client, authentication will be handled for you. If you are using the REST API, you will need to add the Authorization header as described in the cURL example.

编辑7/27/2017: Screenshot of error msg

1 个答案:

答案 0 :(得分:0)

正如您在authentication post上看到的那样。他们已弃用客户/身份和秘密,并于2017年11月15日将其删除。 我认为你应该更新你的js包。 它会正常工作。