2017-06-14 5 views
1

私はMagentoの2店舗から製品のリストを取得するために休憩API V1 /製品を呼び出しています属性Magentoの2休憩アピV1 /製品不足している拡張子は

要求:

http://{myMagentohost}/Magento/index.php/rest/V1/products?searchCriteria[currentPage]=1&searchCriteria[pageSize]=1 

応答:

{"items": [ { "id": 1,"sku": "24-MB01","name": "Joust Duffle Bag","attribute_set_id": 15,"price": 34,"status": 1,"visibility": 4,"type_id": "simple","created_at": "2017-06-13 09:36:11","updated_at": "2017-06-13 09:36:11","product_links": [{"sku": "24-MB01", "link_type": "upsell","linked_product_sku": "24-MB03","linked_product_type": "simple","position": null,"extension_attributes": []},{"sku": "24-B01","link_type": "upsell","linked_product_sku": "24-WB04","linked_product_type": "simple","position": null,"extension_attributes": []}],"options": [],"tier_prices": [],"custom_attributes": [{"attribute_code": "description","value": "<p>The sporty Joust Duffle Bag can't be beat - ot in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it's ideal for athletes with places to go.<p>\n<ul>\n<li>Dual top handles.</li>\n<li>Adjustable shoulder strap.</li>\n<li>Full-length zipper.</li>\n<li>L 29\" x W 13\" x H 11\".</li>\n</ul>"},{"attribute_code": "image","value": "/m/b/mb01-blue-0.jpg"},{"attribute_code": "small_image","value": "/m/b/mb01-blue-0.jpg"},{"attribute_code": "thumbnail","value": "/m/b/mb01-blue-0.jpg"},{"attribute_code": "url_key","value": "joust-duffle-bag"}]}],"search_criteria": {"filter_groups": [],"page_size": 1,"current_page": 1},"total_count": 2046} 

Magento 2 Rest API swaggerのドキュメントによると、 catalogProductRepositoryV1、GET/V1/productsが応答してextension_attrib私が実際にpostmanからこのapiを呼び出すときextension_attributesはありません。

私はそれを検索しますが、適切な解決策はありません。

誰でもこの問題を解決できますか?

ありがとうございます!

答えて

0

私たちはM2Ent Cloud Edtを使用していますが、Magentoのサポートを受けているオープンチケットがあります。これは、これがREST APIの問題であることを確認しています。

私たちはまず、ページングを使用してV1/productsを介してすべての製品をループし、その後、V1/products/{sku}と呼んで、すべての詳細を取得します(extension_attributesノード

修正のETAを指定していません。

関連する問題