You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*
|--------------------------------------------------------------------------
| Shopify Webhooks
|--------------------------------------------------------------------------
|
| This option is for defining webhooks.
| Key is for the Shopify webhook event
| Value is for the endpoint to call
|
*/
'webhooks' => [
/*
[
'topic' => env('SHOPIFY_WEBHOOK_1_TOPIC', 'orders/create'),
'address' => env('SHOPIFY_WEBHOOK_1_ADDRESS', 'https://some-app.com/webhook/orders-create')
],
...
*/
],
But how do I use these? For instance to set up a webhook endpoint for my app that listens for Order payment and extracts the information from that hook.
The text was updated successfully, but these errors were encountered:
Greate package, saving me a ton of time!
Question: I see webhooks mentioned several places, but no information about how to use this package to manage them.
Eg. in the config, I see
and
But how do I use these? For instance to set up a webhook endpoint for my app that listens for Order payment and extracts the information from that hook.
The text was updated successfully, but these errors were encountered: