Ravi Varma
Ravi Varma

Reputation: 145

How can create custom shipping shopify app in php?

I want to create custom shipping app in shoipify via php. I have checked this reference link but i need example of php.

Does anyone have an idea for that please?

Upvotes: 0

Views: 537

Answers (1)

David Lazar
David Lazar

Reputation: 11427

Your best bet is to do the following:

  1. get an App successfully installed in a Shopify development store
  2. configure an endpoint (route in your App) to receive checkout payloads from Shopify
  3. create a sample checkout in your development store
  4. pretend to checkout and get to the shipping step, so your endpoint gets the payload

At that point you have accomplished the basics. That is how you do it. With the payload in your hands, you can craft a bazillion different shipping scenarios.

Upvotes: 1

Related Questions