Multiple AppIDs support

The SDK has support for multiple AppIDs. If your app communicates with multiple servers which have different AppIDs you should make sure that the correct headers are sent to each server.

You can configure multiple AppIDs for the HUMAN SDK, by calling the PerimeterX/start(appId:delegate:enableDoctorCheck:completion:) function for each AppID you have.

When using multiple AppIDs, you should:

  1. Specify the relevant AppID anytime you call functions in the HUMAN SDK.
  2. Set the domain list in the policy for each AppID. Here is an example:
val policyForAppId1 = PXPolicy()
policyForAppId1.domains.insert("my-domain-1.com")
PerimeterX.INSTANCE.setPolicy(policyForAppId1, "<APP_ID_1>")

val policyForAppId2 = PXPolicy()
policyForAppId2.domains.insert("my-domain-2.com")
PerimeterX.INSTANCE.setPolicy(policyForAppId2, "<APP_ID_2>")
PXPolicy policyForAppId1 = new PXPolicy();
policyForAppId1.getDomains().add("my-domain-1.com");
PerimeterX.INSTANCE.setPolicy(policyForAppId1, "<APP_ID_1>");

PXPolicy policyForAppId2 = new PXPolicy();
policyForAppId2.getDomains().add("my-domain-2.com");
PerimeterX.INSTANCE.setPolicy(policyForAppId2, "<APP_ID_2>");