我正在使用box apis創建企業用戶和組。我無法通過curl或通過java代碼創建用戶/組,因爲請求導致Forbidden錯誤(403)。請注意,身份驗證令牌已使用可在Box管理控制檯中創建用戶/組的企業管理員憑據創建。創建用戶/組使用捲曲不工作
以下是捲曲命令及其響應: -
捲曲--insecure https://api.box.com/2.0/groups -H 「授權:承載AUTH-TOKEN」 -H 「內容類型:application/JSON」 -d「{ 「\」 名字 「\」: 「\」 家庭 「\」}」 -X POST -v
回答: -
> POST /2.0/groups HTTP/1.1
> User-Agent: curl/7.27.0
> Host: api.box.com
> Accept: */*
> Authorization: Bearer <AUTH-TOKEN>
> Content-Length: 18
> Content-Type: application/x-www-form-urlencoded
>
* upload completely sent off: 18 out of 18 bytes
< HTTP/1.1 403 Forbidden
< S erver: nginx
< Date: Fri, 13 Dec 2013 13:04:52 GMT
< Content-Length: 0
< Connection: keep-alive
< WWW-Authenticate: Bearer realm="Service", error="insufficient_scope", error_description="**The request requires higher privileges than provided by the access token."**
謝謝 Alevi
您的應用程序具有管理範圍是否已開啓?您可能需要打開它,然後通過OAuth2重新進行身份驗證 – Peter
您的應用程序是否啓用了管理範圍的令牌? – Peter
Hello Platform Boxer,對不起,延遲應對。正如你所建議的,我啓用了管理範圍和上面的curl命令!謝謝:)但是,我需要做同樣的編程,我無法通過java json對象執行類似的操作。 Follwing是供您參考的代碼: - –