"Visit web page" activities are logged by the munchkin code, not by the URL click tracking (which would lead to a "click link" activity).
Click Link in Web Page is logged by Munchkin.
Click Link in Email is not logged by Munchkin.
FTR....
Visited Web Page {URL}services.html on DomainB.com
another way to put it
Visited Web Page DomainB.com/services/
The link click from DomainA to DomainB can/should already be logged as a Clicked Link on Web Page activity, with the target of the link (DomainB) included in the log.
While you could fake a Visited Web Page activity using the Munchkin API, you don't want a VWP here because it will appear as if the page is under DomainA.
Thanks for the insight!
Hey Sanford,
Was wondering if this method works reasonably with CVent? I'm stuck using them for a project and I know they're very restrictive with what javascript you are able to inject or edit on their page.
While I have munchkin loading on the page it's a moot point since it won't get logged back to Marketo.
Is something like this feasible http://developers.marketo.com/blog/make-a-marketo-form-submission-in-the-background/
for such a use-case?
Thanks
If you can get an identifying piece of info from site to site I would sooner use the mkt_tok. But yes, if you send the email from site to site you can do a hidden form post with it.
Hi, Gregoire!
If someone is authenticated, could you not use the Associate Lead API call to connect the cookie to Marketo?
Of course, you would need to have the LeadID.
Merci!
Posting a form in the background is a much better option, IMHO.
To elaborate a bit on Sanford's point, calling a REST API from a browser, drives some DOS attack risks.
-Greg
It's worse than DoS, it's a complete compromise of your instance. You can never connect directly from the browser because you're exposing credentials (that must be secret) that allow anyone to alter any fields on any lead in your instance.
If you gateway the connection through an intermediate server, then you can mitigate the worst risk by ensuring that only the associateLead method is called and only with particular fields. But that's when you have an open DoS vulnerability.