api 令牌的 Spree 通用实现

Spree generic implementation for api token

我正在使用以下大礼包从大礼包购物车中删除商品 api url

/api/orders/#{current_order.number}/line_items/#{line_iem.id}?line_item[variant_id]=#{line_item.variant.id}&line_item[quantity]=0&token=MyToken

此处使用的令牌是单个用户的。我想以通用方式实现它,以便访客和注册用户都可以使用它。这可能吗?

任何帮助将不胜感激

此致

每当您使用 Spree API 创建订单时,您都会在响应中收到 order_token。来自 Spree API Guide:

The order_token parameter will work for authorizing any action for an order within Spree’s API.

所以不要附加 &token=... 你应该附加 &order_token=...

它适用于注册用户和访客。