I’m performing some POCs in order to have SnowPlow running.
But no success to receive the events on postgre
I’m performing some POCs in order to have SnowPlow running.
But no success to receive the events on postgre
Hi @ggasque ,
I think there is a problem in the way you initialize the SyncEmitter
instance:
http
as the protocol but based on the URL, it should be https
So I would suggest trying this out instead:
$emitter = new SyncEmitter("cb3c8d13-de9c-4bb0-bb2c-becae@d2d1ff.app.try-snowplow.com", "https", "POST", 1, true) ;
Thanks, I’ll try
@ggasque Please also change the URL of the collector not to include the https://
protocol but only the hostname. So it should be exactly:
$emitter = new SyncEmitter("cb3c8d13-de9c-4bb0-bb2c-becae@d2d1ff.app.try-snowplow.com", "https", "POST", 1, true);
It worked, thanks!!!