Hi,
Use Case - Want to stitch ECID from Website to Mobile Web Browser. User scans the QR code shown on the website and lands on to the mobile web browser.
Both the platforms are enabled with Adobe Analytics(Web SDK Implementation) and are on same domain as well.
I have used appendIdentityToUrl command for stitching.
alloy("appendIdentityToUrl",{url: location.href});
This approach is working but there is a challenge in appending ecid to querystring, the URL will be long and it affects the QR image quality and reading capability.
Can there be any other solution for this problem?
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Parth_Gupta you can use the FPID features of Edge Network (more details here in the documentation).
READ CAREFULLY THE DOCUMENTATION BEFORE READING MY PROPOSAL.
In few words, usually ECID is auto-generated by the Adobe servers. If you pass another ID, created by you, (will call id YOID) in the WebSDK HTTP call, the Edge Network capture it and generate an ECID starting from the YOID. The advantage is that if you pass the same YOID, the ECID returned will always be the same.
So the idea is:
CONS:
Hope this helps.
Best.
Views
Replies
Total Likes
Hi @Parth_Gupta you can use the FPID features of Edge Network (more details here in the documentation).
READ CAREFULLY THE DOCUMENTATION BEFORE READING MY PROPOSAL.
In few words, usually ECID is auto-generated by the Adobe servers. If you pass another ID, created by you, (will call id YOID) in the WebSDK HTTP call, the Edge Network capture it and generate an ECID starting from the YOID. The advantage is that if you pass the same YOID, the ECID returned will always be the same.
So the idea is:
CONS:
Hope this helps.
Best.
Views
Replies
Total Likes
Hi @Parth_Gupta, you have an exciting use case here to stitch devices. The original idea for the ECID stitch was to launch the website from the mobile app, passing the ECID on the URL to connect visits on the same device. But your case is connecting a desktop computer showing the QR code to the mobile phone scanning the code and continuing the journey.
The FPID suggested by @aa_from_savoy should work, another approach is using API from a URL shortener to shorten the URL before generating the QR code image.
Views
Replies
Total Likes