I have AEP Edge Configured on my mobile app.
How do I send data from Edge to Analytics? I have added Adobe analytics service in my data stream and mapped to a test report suite but can't see the data. What else is needed to see the data?
Solved! Go to Solution.
Views
Replies
Total Likes
Another reference, developer.adobe.com/client-sdks/documentation/getting-started/track-events/#send-events-to-edge-netw..., create the ExperienceEvent and send it out. A sample Swift code for a simple page view tracking
let xdmData: [String: Any] = [
"eventType": "web.webpagedetails.pageViews",
"web": [
"webPageDetails": [
"name": "Intro|Splash"
]
],
]
let experienceEvent = ExperienceEvent(xdm: xdmData)
Edge.sendEvent(experienceEvent: experienceEvent)
Views
Replies
Total Likes
You can check this tutorial for a guide on how to implement Analytics with the Mobile SDK: https://experienceleague.adobe.com/docs/platform-learn/implement-mobile-sdk/experience-cloud/analyti...
Another reference, developer.adobe.com/client-sdks/documentation/getting-started/track-events/#send-events-to-edge-netw..., create the ExperienceEvent and send it out. A sample Swift code for a simple page view tracking
let xdmData: [String: Any] = [
"eventType": "web.webpagedetails.pageViews",
"web": [
"webPageDetails": [
"name": "Intro|Splash"
]
],
]
let experienceEvent = ExperienceEvent(xdm: xdmData)
Edge.sendEvent(experienceEvent: experienceEvent)
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies