Pass logged in contact to OPA interview embedded in div
Content
I have been trying to implement "embed an interview using a div" as outlined here .
I am having trouble passing user data to OPA, for a logged in contact on the Customer Portal.
The interview is sitting on the customer portal and is connected to service cloud
What parameters does the request expect to be able to determine the user is logged in and fetch the user data?
Thanks
Version
OPA August 2017Code Snippet
<!DOCTYPE html> <html> <head> <link href="https://xxxx.custhelp.com/web-determinations/staticresource/interviews.css" rel="stylesheet" type="text/css"/> <link href="https://xxxx.custhelp.com/web-determinations/staticresource/fonts/fonts.css" rel="stylesheet" type="text/css"/> <script src="https://xxxx.custhelp.com/web-determinations/staticresource/interviews.js"></script> <title>My First Embedded Interview</title> </head> <body> <div style="display: inline-block; width:100%"> <div id="interviewDiv" style="width: 100%; display: block; margin-left: auto; margin-right:auto; float: left"></div> </div>
0