以客户身份通过​​iOS应用程序login到BigCommerce API

我正在为BigCommerce.com上的商店开发iOS应用程序。 我已经成功从BigCommerce API中检索产品列表,并且还创build了一个使用相同的新用户。

创build用户: https : //developer.bigcommerce.com/api/stores/v2/customers#create-a-customer

产品列表: https : //developer.bigcommerce.com/api/stores/v2/products

但我无法理解,我应该如何login到BigCommerce商店作为客户购买产品上市。

请任何人都可以帮忙。

您可以通过发送POST来login:

/remote.php?w=expressCheckoutLogin 

在POST正文中发送字段“login_email”和“login_pass”。

在bigCommerce中很难findloginAPI。 这个解决scheme是100%的工作和testing。

保持享受

APiurl: https ://api.bigcommerce.com/stores/[STORE_HASH]/v2/customers/[CUSTOMER_ID]/validate

方法:POST

Header X-Auth-Client:Client_id X-Auth-Token:Access Token Accept:application / json Content-Type:application / json

Body {“password”:“123456”}

响应 {“success”:true}

Interesting Posts