Navigation

Test your integration

It's important to verify that your integration is working before deploying to production. This guide will walk you through testing your integration and ensuring it is ready to be deployed.

The easiest way to test your integration is to pass debug: true to the attach function. This will enable the Rupt SDK to print debug information to the console. You can use this information to verify that your integration is working as expected.

await Rupt.attach({
  client_id: `your_api_client_id`,
  account: `user_account_id`,
  debug: true,
});

Also make sure that you are using a development API client ID for testing. Use a production API client ID only when you are ready to deploy to production.