[Swift] Analytics - Product variable implementation is not in documentation | Community
Skip to main content
Level 2
August 20, 2019
Solved

[Swift] Analytics - Product variable implementation is not in documentation

  • August 20, 2019
  • 7 replies
  • 6261 views

Hello everyone!

I have a quick question about swift syntax to implement products info in analytics.

In this document: Product variable - Adobe Experience Platform Mobile SDKs

We only have info about Obective-C implementation.

Can anyone help me on the syntax for Swift? Can the documentation be uptated?

Thanks!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by arjun_bhadra

Hi Jennifer Andrews Adobe​,

Thanks for verifying the code, good catch it has to be  var contextData: [String : String] = [:]

Will update the documentation accordingly.

Thanks,
Arjun

7 replies

jantzen_b
Adobe Employee
Adobe Employee
August 20, 2019

Can you confirm which version of the SDK you are using?

Level 2
August 20, 2019

Hi Jantzen,

SKD is not implemented yet so it will be at least Core 2.3.2 and Analytics 2.1.2

Thanks!

jantzen_b
Adobe Employee
Adobe Employee
August 20, 2019

Great! I wanted to make sure I move this question to the correct mobile community. Since you haven't implemented yet, I'm assuming you'll be using V5 of our SDK so I'll move this question to the Adobe Experience Platform SDKs​ community. You are also welcome to browse the legacy Adobe Experience Cloud Mobile​ community for answers, just know that there are major differences between the two so be sure to verify any information found in the latter community.

arjun_bhadra
Adobe Employee
Adobe Employee
August 20, 2019

Hi Kevin,

The swift syntax would be as follows:

//create a context data dictionary

// add products, a purchase id, a purchase context data key, and any other data you want to collect.

// Note the special syntax for products

var contextData = ["&&events" : "event1", "&&products" : ";Running Shoes;1;69.95;event1=5.5;eVar1=Merchandising,;Running Socks;10;29.99", "m.purchaseid" : "1234567890", "m.purchase" : "1"]

// send the tracking call - use either a trackAction or TrackState call.

// trackAction example:

ACPCore.trackAction("purchase", data:contextData)

// trackState example:

ACPCore.trackState("Order Confirmation", data: contextData)

Refer this link : https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-analytics#set-products-variable

Thanks for pointing it out, we will update our documentation to point to the correct sample.

Thanks,

Arjun

AEP SDK Team

Jennifer_Andrews
Adobe Employee
Adobe Employee
August 20, 2019

kevinj52562561

The sample code above is when using Product variable with Merchandising Variable.

The link Arjun provided above shows documentation for a Product variable only.

arjunbhadra

I get a compile error with

var contextData: [AnyHashable : Any] = [:]

Cannot convert value of type '[AnyHashable : Any]' to expected argument type '[String : String]?'

I change to

  var contextData: [String : String] = [:]

Compiled successfully and received the correct information in the hit sent to Analytics.

Can you confirm that is the correct method?

Thanks,
Jen

arjun_bhadra
Adobe Employee
arjun_bhadraAdobe EmployeeAccepted solution
Adobe Employee
August 20, 2019

Hi Jennifer Andrews Adobe​,

Thanks for verifying the code, good catch it has to be  var contextData: [String : String] = [:]

Will update the documentation accordingly.

Thanks,
Arjun

Level 2
August 21, 2019

Hi Jennifer Andrews Adobe, arjunbhadra,

Thanks foy your quick answers!

Kevin