Sample code for 30+ languages & platforms
Dart

SugarCRM Authenticate

See more SugarCRM Examples

Demonstrates how to authenticate to the SugarCRM REST v10 API. This is how an OAuth2 access token is obtained.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final rest = CkRest();

  try {
    rest.connect('your.site.domain', 443, true, true);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  rest.addHeader('Cache-Control', 'no-cache');

  // The following code creates the JSON request body.
  // The JSON created by this code is shown below.
  final jsonReq = CkJsonObject();
  jsonReq.updateString('grant_type', 'password');
  jsonReq.updateString('client_id', 'sugar');
  jsonReq.updateString('client_secret', 'CLIENT_SECRET');
  jsonReq.updateString('username', 'admin');
  jsonReq.updateString('password', 'password');
  jsonReq.updateString('platform', 'custom_api');

  // The JSON request body created by the above code:

  // {
  //   "grant_type": "password",
  //   "client_id": "sugar",
  //   "client_secret": "CLIENT_SECRET",
  //   "username": "admin",
  //   "password": "password",
  //   "platform": "custom_api"
  // }

  final sbReq = CkStringBuilder();
  jsonReq.emitSb(sbReq);

  rest.addHeader('Content-Type', 'application/json');

  final sbJson = CkStringBuilder();
  try {
    rest.fullRequestSb('POST', '/rest/v10/oauth2/token', sbReq, sbJson);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  if (rest.responseStatusCode != 200) {
    print('Received error response code: ${rest.responseStatusCode}');
    print('Response body:');
    print(sbJson.getAsString());
    return;
  }

  final json = CkJsonObject();
  json.loadSb(sbJson);

  // The following code parses the JSON response.
  // A sample JSON response is shown below the sample code.

  final accessToken = json.stringOf('access_token');
  final expiresIn = json.intOf('expires_in');
  final tokenType = json.stringOf('token_type');
  final refreshToken = json.stringOf('refresh_token');
  final refreshExpiresIn = json.intOf('refresh_expires_in');
  final downloadToken = json.stringOf('download_token');

  // A sample JSON response body that is parsed by the above code:

  // {
  //   "access_token": "c6d495c9-bb25-81d2-5f81-533ef6479f9b",
  //   "expires_in": 3600,
  //   "token_type": "bearer",
  //   "scope": null,
  //   "refresh_token": "cbc40e67-12bc-4b56-a1d9-533ef62f2601",
  //   "refresh_expires_in": 1209600,
  //   "download_token": "cc5d1a9f-6627-3349-96e5-533ef6b1a493"
  // }

  print('Example Completed.');
}