如何在Box帐户中创建App用户?

时间:2016-05-13 02:30:44

标签: box-api

我是开发人员BOX的新手,我想在我的BOX帐户中创建一个仅限app的用户。我发现了这个link,它指导我完成整个过程。但是,我无法找到继续执行以下操作:

1) How to request an enterprise access token using the JWT
2) How to use the enterprise access token to make a request for a new app user. 

如果这个问题很愚蠢或琐碎,我会非常抱歉。我是这个领域的新手,我真的希望得到一些帮助,因为我希望在这个领域更多地工作。

1 个答案:

答案 0 :(得分:0)

This page on the Box documentation site介绍如何创建企业访问令牌。

如您所述,一旦生成企业访问令牌,您就可以使用用户端点创建新的应用用户。这是cURL中的一个例子。

curl https://api.box.com/2.0/users \
-H "Authorization: Bearer REPLACE_WITH_YOUR_ENTERPRISE_ACCESS_TOKEN" \
-d '{"name": "Example Name", "is_platform_access_only": true}' \
-X POST