Expand my Community achievements bar.

SOLVED

Possible to render a VEC decision server side?

Avatar

Level 2

I'm working on a solution to rendering a VEC personalization decision server-side in Next.js and React. Question is, is this possible? Here's what I've done so far on our site that uses the Adobe Web SDK extension in Tags.

 

When the page is rendering server-side using Next.js and React I make a request to the https://edge.adobedc.net/ee/v2/interact endpoint and I can see my VEC experience being returned. 

Example of the data returned from the endpoint:

 

 

                {
                  "id": "0",
                  "schema": "https://ns.adobe.com/personalization/dom-action",
                  "meta": {
                    "profile.et_rid": "true",
                    "activity.name": "TEST: VEC Made For You",
                    "experience.name": "Experience B",
                    "option.name": "Offer2",
                    "option.id": "2",
                    "profile.daysSinceLastVisit": "0.0",
                    "offer.id": "0",
                    "experience.id": "1",
                    "offer.name": "Default Content",
                    "profile.247228_activityImpression": "true",
                    "activity.decisioningMethod": "server-side",
                  },
                  "data": {
                    "type": "setHtml",
                    "format": "application/vnd.adobe.target.dom-action",
                    "content": "Made For You",
                    "selector": "#topMenuSection-70 > A:nth-of-type(1) > SPAN:nth-of-type(1)",
                    "prehidingSelector": "#topMenuSection-70 > A:nth-of-type(1) > SPAN:nth-of-type(1)"
                  }
                },

 

 

Has anyone ever used the https://edge.adobedc.net/ee/v2/interact endpoint to render a VEC decision server side?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 9

@msweeneyRAB 

The VEC modifies the DOM using JavaScript and provides full controls to UI/UX via DOM; translating a similar experience would be challenging on the server side.

As for Server side you would have use  Node.js SDK or Server-Side APIs

  • Server-Side APIs would provide certain feature but has limitation 
  • Node.js SDK can help you to build a custom solution 

Hope this helps 

 

View solution in original post

4 Replies

Avatar

Community Advisor

Hi @msweeneyRAB ,

 

I have not implemented but I can see related document in adobe.

You can go through that.

https://experienceleague.adobe.com/en/docs/target-dev/developer/server-side/server-side-overview

 

 

Avatar

Level 2

Thank you @pradnya_balvir. I looked quickly at the link provided and there is no mention of VEC for this approach, appears to be for form based experiences. I will dig further but wanted to call out that the solution needs to work for VEC.

Avatar

Correct answer by
Level 9

@msweeneyRAB 

The VEC modifies the DOM using JavaScript and provides full controls to UI/UX via DOM; translating a similar experience would be challenging on the server side.

As for Server side you would have use  Node.js SDK or Server-Side APIs

  • Server-Side APIs would provide certain feature but has limitation 
  • Node.js SDK can help you to build a custom solution 

Hope this helps