Client Credentials Grant
Client Credentials Grant
Follow the steps below if you would like to leverage server authentication and verify your application's identity using a client ID and client secret.
Prerequisites
- A Custom Application using Server Authentication (with Client Credentials Grant) authentication in the Box Developer Console
- 2FA enabled on your Box account for viewing and copying the application's client secret from the configuration tab
- The application is authorized in the Box Admin Console
How to use
When making your API call to obtain an Access Token, your
request body needs to contain your client ID and client Secret. Set the
grant_type
to client_credentials
.
If you would like to authenticate as the application's Service Account:
- set
box_subject_type
toenterprise
- set
box_subject_id
to the enterprise ID
If you would like to authenticate as a Managed User:
- set
box_subject_type
touser
- set
box_subject_id
to the user ID
curl -i -X POST "https://api.box.com/oauth2/token" \
-H "content-type: application/x-www-form-urlencoded" \
-d "client_id=[CLIENT_ID]" \
-d "client_secret=[CLIENT_SECRET]" \
-d "grant_type=client_credentials" \
-d "box_subject_type=enterprise" \
-d "box_subject_id=[ENTERPRISE_ID]"
BoxCCGAPIConnection api = BoxCCGAPIConnection.applicationServiceAccountConnection(
"client_id",
"client_secret",
"enterprise_id"
);
auth = CCGAuth(
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_CLIENT_SECRET",
enterprise_id="YOUR_ENETRPRISE_ID"
)
var boxConfig = new BoxConfigBuilder("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")
.Build();
var boxCCG = new BoxCCGAuth(boxConfig);
const BoxSDK = require('box-node-sdk');
const sdkConfig = {
boxAppSettings: {
clientID: "CLIENT_ID",
clientSecret: "CLIENT_SECRET"
},
enterpriseID: "ENTERPRISE_ID"
}
const sdk = BoxSDK.getPreconfiguredInstance(sdkConfig)
const client = sdk.getAnonymousClient();
import BoxSDK
let sdk = BoxSDK(clientId: "YOUR CLIENT ID HERE", clientSecret: "YOUR CLIENT SECRET HERE")
sdk.getCCGClientForAccountService(enterpriseId: "YOUR ENTERPRISE ID HERE") { result in
switch result {
case let .success(client):
// Use client to make API calls
case let .failure(error):
// Handle error creating client
}
}
Common Errors
Grant credentials are invalid
During authentication, you can encounter the following error:
Grant credentials are invalid [400 Bad Request] invalid_grant - Grant credentials are invalid
This error indicates either:
-
the client ID and client secret passed are incorrect or are not for the same application,
-
the
box_subject_id
cannot be used based on the selected application access. For example, if you send in abox_subject_type
ofenterprise
and your application is configured for App Access Only, thegrant credentials are invalid
error will be returned, -
to use a
box_subject_type
ofuser
, your application should be configured to generate user access tokens in the Advanced Features section of the Configuration tab.
- your application has not been authorized in the Box Admin Console