does the HTTP Events API endpoint bypass that? (Because otherwise, won't almost all traffic to it ge
does the HTTP Events API endpoint bypass that? (Because otherwise, won't almost all traffic to it get blocked as most people use it with something automated on their backend?)
18 Replies
Unknown Userโข8mo ago
Message Not Public
Sign In & Join Server To View
sorry, do you mean it does block to the HTTP Events API, or it does not block to the HTTP Events API? ๐
Unknown Userโข8mo ago
Message Not Public
Sign In & Join Server To View
ah..
@yo'av so I entered a custom path like
/a
, and it seems to be causing my routes on /a*
to fail. ๐
Is there a typo somewhere? (I assumed it's supposed to listen on /a/*
.)How to change some user Properties like RegionCode to lowercase?
With Zaraz Context we can use JSONata like {{ $lowercase(system.cookies.myCookie) }}
How to do it with Properties?
In Facebook Managed Component it is done in
src/track.ts
line 130: const data = encoder.encode(value.trim().toLowerCase())
to hash it
Unknown Userโข8mo ago
Message Not Public
Sign In & Join Server To View
Cloudflare Docs
Properties reference ยท Cloudflare Zaraz docs
Cloudflare Zaraz offers properties that you can use when configuring the product. They are helpful to send data to a third-party tool or to create โฆ
Unknown Userโข8mo ago
Message Not Public
Sign In & Join Server To View
Anyone else having some issues with GA4 right now? (not zaraz) just the only group I can think of asking that ๐
Location can be added here?
https://developers.cloudflare.com/zaraz/reference/context/#system-properties
Cloudflare Docs
Zaraz Context ยท Cloudflare Zaraz docs
The Zaraz Context is a versatile object that provides a set of configurable properties for Zaraz, a web analytics tool for tracking user behavior on โฆ
how can i make a link or a button that will open the preference component of zaraz, after closing it?
I think this work:
button.addEventListener('click', function() {
// Set zaraz.consent.modal to true
zaraz.consent.modal = true;
});
omg this looks so easy ๐ thanks
Cloudflare Docs
Consent API ยท Cloudflare Zaraz docs
The Consent API allows you to programmatically control all aspects of the Consent Management program. This includes managing the modal, the consent โฆ
Hello everyone, I've created retargeting audience for google ads for specific page visit, just wonder how can I import it into google ads or it will be shown automatically after some time?
Hey team! We're using Zaraz to pipe our analytics events from our browser client to GA4. We're calling
zaraz.track()
and not awaiting the request. We've noticed that if we make this request twice in quick succession, the events often show up in GA in the opposite order to that which they were called.
We've done some experimenting and believe that it's simply network latency for these two request resulting in the second request beating the first over the wire and thus ending up pushing to GA in the wrong order.
We could await
the zaraz.track
request on the client to ensure correct ordering, but that would block the UI until Zaraz responds, which we don't want.
It would be great if there was a way for Zaraz to order the events based on a client timestamp rather than the time the request was received, is this possible? Or has anyone encountered this issue and have other suggestions? ๐ Thanks in advance!Hey guys, just added the Snapchat & TikTok integrations to my site.
Most events are fine but some require some fields that I can't seem to pass using Zaraz.
For example, the
CompleteRegistration
event in TikTok requires the fields value
, currency
& content_id
. I was wondering if there was a way to pass them to TikTok and I just couldn't find it.
If there is no current way, would it be possible to add Custom Fields like in other integrations (for example the Mixpanel Integration)