Skip to main content
Feedback

oauth2 Tokens Override

When oauth2 tokens from Boomi Cloud API Management – Local Edition 4.x.x are migrated to 6.x.x, then existing oauth2 tokens with overlapping id in Local Edition 6.x.x database will be overwritten.

If you want to keep existing oauth2 tokens in 6.x.x database, then perform the following steps before using oauth2 in Local Edition 6.x.x.

Procedure

  1. Run the following query in Local Edition 4.x.x database.
    SELECT MAX(id) from onprem.oauth2_access_tokens;
  2. Run the following command in Local Edition 6.x.x database.
    ALTER TABLE masherysolar.oauth2_access_tokens AUTO_INCREMENT=A_NUMBER_LARGER_THAN_MAX_TOKEN_ID_IN_ML_4X;
On this Page