Questions tagged «rest»

表示与Magento上的REST API相关的问题

1
Magento 2:如何运送称为On Checkout的rest api函数?
当您在“结帐页面”上单击“在此处寄送”时,它将调用 magento / rest / default / V1 / carts / mine / estimate-shipping-methods-by-address-id 然后转到下面的JS文件 magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ js \ model \ shipping-rate-processor \ customer-address.js magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ …

1
如何使用REST API v2创建可配置产品?
我正在尝试创建一个名为“ Kudos Configurable”的可配置产品,其中的选项供用户从小绿色,大绿色,小橙色和大橙色中选择。 我已经到了通过对/ rest / V1 / products / KudosConfig的PUT请求中使用以下JSON通过API创建可配置产品的阶段。 { "product":{ "sku":"KudosConfig", "name":"Kudos Configurable", "price":30.00, "status":4, "type_id":"configurable", "attribute_set_id":4, "weight":1, "extension_attributes":{ "stock_item":{ "qty":10, "is_in_stock":true } } } } 子产品是使用API​​使用以下JSON创建的,用于以下4个项目中的每个项目,并通过相同的方法设置了尺寸和颜色属性。 { "product":{ "sku":"KudosConfigGreenSmall ", "name":"Kudos Configurable Green Small", "price":30.00, "status":0, "type_id":"virtual", "visibility":1, "attribute_set_id":4, "weight":1, "extension_attributes":{ "stock_item":{ "qty":10, "is_in_stock":true } }, …


1
来宾用户的REST API调用
使用书写器库开发android本机应用程序,并使用现有基于Magento的电子商务平台中基于Rest的Web服务。 我已经从基于Magento的Oauth Consumer获得了诸如'Key'和'Secret'之类的先决条件。 由于在现有方案中有三个用户,例如注册用户,管理员和来宾用户。 对于注册客户和管理员,Iam可以在完成授权URL链接并允许该应用访问我的帐户后,获取outh令牌和秘密令牌。 但是最初,我想访问其余服务,并以访客用户身份(未在应用程序中注册)显示产品列表,但是每次它要求授权URL时。 我正在共享部分代码,请仔细阅读。 OAuthService service = new ServiceBuilder() .provider(MagentoThreeLeggedOAuth.class) .apiKey(MAGENTO_API_KEY) .apiSecret(MAGENTO_API_SECRET) .debug() .build(); Token requestToken = service.getRequestToken(); String authorizationUrl = service.getAuthorizationUrl(requestToken); /*popup window which displays authorization from the user*/ startActivity(new Intent("android.intent.action.VIEW", Uri.parse(authorizationUrl))); 如何获得来宾用户的秘密令牌? 提前致谢。

1
高负荷服务。肥皂与休息
我的任务是使用其SOAP或REST实现为Magento制作一个api。 我已经阅读了很多有关这两种服务的文章,也有使用它们的经验。但不是high-loaded projects。 该服务的任务将通过SOAP或REST向客户端提供一些额外的信息。我都配置了,一切正常。 但是,问题是,如果每秒有100个客户呼叫我的服务,而200个,500个以此类推,那会更好呢? 我了解SOAP的开销,但是如果我使用REST,还需要使用oAuth,那么首先会发生什么呢? 有什么经验吗?

1
Magento REST API入门
因此,官方文档非常简短(不好!),特别是对于过去从未使用过REST / Oauth的人而言。我正在使用Magento 1.8.1 CE。 有人可以提供有关如何使用Magento的REST API的简单PHP示例吗? 使用他们的示例代码(http://www.magentocommerce.com/api/rest/introduction.html),我得到两个错误: Message: Undefined index: state Message: Use of undefined constant OAUTH_AUTH_TYPE_URI - assumed 'OAUTH_AUTH_TYPE_URI' 到目前为止,我已经完成了: 安装php oauth扩展 在Magento中至少创建一种产品 配置Admin REST用户的资源权限,以检索Admin的所有产品数据 创建消费者 任何帮助是极大的赞赏。 编辑:我把问题缩小为(惊讶,惊喜!)OAuth无法正常工作。我放弃并更改了Guest角色和属性以允许所有角色。然后,我导航到以下内容以测试它们是否正常工作: http://yourdomain/api/rest/products http://yourdomain/api/rest/products/1/images 一切确实都在工作。如果/当我确定如何正确处理身份验证时,我将发布答案。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.