adjust-icon

Meta Install Referrer

The Meta Install Referrer plugin enables the Adjust SDK to read Meta Install Referrer values on a device. The SDK then sends this information to Adjust’s servers as part of the install payload.

To add the plugin to your app:

  1. Find your Meta app ID in your App Dashboard. See Meta’s App Dashboard documentation for more information.

  2. Pass your App ID as a string argument to the AdjustConfig.setFbAppId method.

    const adjustConfig = new AdjustConfig(
    "{YourAppToken}",
    AdjustConfig.EnvironmentSandbox,
    );
    //...
    adjustConfig.setFbAppId("<FB_APP_ID_STRING>");
    //...
    Adjust.initSdk(adjustConfig);