Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Shopware 6 的 REST API(使用此API)获取有关客户的信息。因此,我需要该用户的 ContextToken。为用户获取上下文令牌的唯一方法是让他登录,但为此我需要一个我没有的用户的密码。有没有办法只用他的电子邮件地址或历史客户 ID 来获取用户的 ContextToken?
Shopware 带有 2 个不同的 API,即 Store-API 和 Admin-API。请参阅文档。
Store-API用于构建店面,因此您需要使用该 API 以用户身份进行身份验证。
当您构建自定义集成时,您应该使用Admin-API,因为该 API 可用于系统所有实体上的类似 CRUD 的操作。对于管理 API,您可以生成 API-Token 并使用它来查询所有客户的数据。