Hello,
I develop an hybrid application with capacitor. I have adobe analytics. It runs on Android but on iOS each page has a new idvisitor, so each page is a new application visit.
I've got an error in log:
[warn] - [alloy] [Identity] Identity cookie not found. This could be caused by any of the following issues:
* The org ID [My org id]@AdobeOrg configured in Alloy doesn't match the org ID specified in the edge configuration.
* Experience edge was not able to set the identity cookie due to domain or cookie restrictions.
* The request was canceled by the browser and not fully processed.
I initialize my adobe like this:
this.alloy = createInstance({ name: 'alloy' });
await this.alloy('configure', {
datastreamId: [ADB_DATA_STREAM_ID],
orgId: [ORG_ID]
});
My version:
"@adobe/alloy": "^2.20.0",
can anyone help me? thanks