Sample code for 30+ languages & platforms
Dart Requires Chilkat v11.0.0+

NetSuite OAuth1

See more OAuth1 Examples

Demonstrates adding OAUth1 authentication to a NetSuite REST API request.

Chilkat Dart Downloads

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

void main() {
  // It requires the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  http.oAuth1 = true;
  http.oAuthConsumerKey = 'CONSUMER_KEY';
  http.oAuthConsumerSecret = 'CONSUMER_SECRET';
  http.oAuthToken = 'ACCESS_TOKEN';
  http.oAuthTokenSecret = 'TOKEN_SECRET';
  http.oAuthRealm = 'ACCOUNT_ID';
  http.oAuthSigMethod = 'HMAC-SHA256';

  // Not sure if this is needed for NetSuite requests.
  http.setRequestHeader('Cookie', 'NS_ROUTING_VERSION=LAGGING');

  // Replace ACCOUNT_ID with your actual account id, which is likely a 7-digit decimal number.
  final resp = CkHttpResponse();
  try {
    http.httpNoBody('GET', 'https://ACCOUNT_ID.suitetalk.api.netsuite.com/services/rest/record/v1/salesOrder', resp);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('Response Status Code: ${resp.statusCode}');
  print('Response Body:');
  print(resp.bodyStr);
}