現在、githubでsandeepshettyのshopify.phpプラグインを使用してい ます https://github.com/sandeepshetty/shopify.php
プラグインは機能しているように見え、ロジックはかなり単純です。「 Create a new Fulfillment 」を使用してテストしましたが、「 Modify an existing Fulfillment」API 呼び出しを使用するとエラー メッセージが表示されます。
次の文字列を送信すると、404 エラーが表示されます
$orders = $shopify('PUT', "/admin/orders/160387514/fulfillments/791851111396.json", $fulfillment_put, $response_headers);
$fulfillment_putがペイロードに変換される場所
{ "fulfillment": { "tracking_number": "987654321", "id": 255858046 } }
以下は、PUT コマンドからの詳細なダンプです。上記のように、パスには次の形式を使用しました。参考までに、いくつかの変数を hidden または alt に置き換えました。
/admin/orders/#{order_id}/fulfillments/#{product_id}.json
* About to connect() to alt.myshopify.com port 443 (#0)
* Trying 204.93.213.40... * connected
* Connected to alt.myshopify.com (204.93.213.40) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: /usr/share/curl/curl-ca-bundle.crt
CApath: none
* SSL connection using RC4-SHA
* Server certificate:
* subject: /serialNumber=Hidden/C=CA/ST=Ontario/L=Ottawa/O=Jaded Pixel Technologies Inc./CN=*.myshopify.com
* start date: 2010-05-10 22:23:08 GMT
* expire date: 2015-08-12 19:17:14 GMT
* subjectAltName: alt.myshopify.com matched
* issuer: /C=US/O=Equifax/OU=Equifax Secure Certificate Authority
* SSL certificate verify ok.
* Server auth using Basic with user 'hidden for privacy'
> PUT /admin/orders/160387514/fulfillments/791851111396.json HTTP/1.1
Authorization: Basic hidden for privacy=
User-Agent: HAC
Host: alt.myshopify.com
Accept: */*
Content-Type: application/json; charset=utf-8
Content-Length: 62
< HTTP/1.1 404 Not Found
< Server: nginx
< Date: Thu, 21 Mar 2013 21:39:06 GMT
< Content-Type: application/json; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Vary: Accept-Encoding
< Status: 404 Not Found
< X-Shopify-Shop-Api-Call-Limit: 2/500
< HTTP_X_SHOPIFY_SHOP_API_CALL_LIMIT: 2/500
< X-Request-Id: 7ec529327cd022e973f22be4a9e86916
< X-UA-Compatible: IE=Edge,chrome=1
< Set-Cookie: _secure_session_id=hidden; path=/; secure; HttpOnly
< X-Runtime: 0.042757
<
* Connection #0 to host alt.myshopify.com left intact
* Closing connection #0
PS次のAPIドキュメントを使用したことに注意したい http://docs.shopify.com/api/fulfillment#create
PUT /admin/orders/#{id}/fulfillments/#{id}.json を使用することをお勧めします
ただし、#{id} が 2 回参照されているため、注文 ID を 2 回続けて使用する必要があることを示唆していますが、ドキュメントには /admin/orders/450789469/fulfillments/255858046.json の例が明確に示されています。実際の #{id} の意味と使用方法について。