aryan
aryan

Reputation: 1

How to use shopify session in php website

I have an a website made in core-php/cakephp and i have also an shopify store . I need to use shopify user session use in my php site .if user login on my shopify store and after login he go to php site the session will continue in my php site . How can I create user in my php website when user create/login in my shopify store or How can I get user information from shopify store to my php website?

Upvotes: 0

Views: 571

Answers (1)

Mangi Lal Dudi
Mangi Lal Dudi

Reputation: 21

Shopify provide facility of the webhooks which is called when a particular event is fire. Like customers create/delete/disable/enable/update on shopify site it also triggered the registered webhooks.

When use create a webhook in shopify store you have to pass URL where shopify will send data. For more details looks at: https://docs.shopify.com/api/reference/webhook

Upvotes: 1

Related Questions