I'm trying to use the Forms 2.0 API to load a form. I'm also using require.js on my site to handle my JS async packages. When I run my callback I'm getting an error in the console from Marketo saying that my supplied Munchkin ID isn't valid. Any idea what dependancy is screwing this up?
Note: I've ommitted my actual ID in the samples.
Error:Error loading form: Object {error: true, errorCode: 400, message: "Subscriber '###-XXX-###' is not valid"} Require.js sample:
// Marketo
require(["marketo"], function(MktoForms2){
MktoForms2.loadForm("//app-sjqe.marketo.com", "###-XXX-###", ####);
});