Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
I have a scenario in app where i need to do something after customer login in my shop. Can I have something like customer login webhook?
Hey dude, any luck on this? I too am lost on this. Cheers!
@David183 wrote:I have a scenario in app where i need to do something after customer login in my shop. Can I have something like customer login webhook?
Me too!
any luck on this one?
Maybe you could add a script which checks if page referrer was /login? If so, customer just logged in, right?
<script>
Console.Log( document.referrer );
</script>
Then you could submit a request to your app via app proxy.
Do you find some way to resolve?