bigCommerce客户api - 客户JWT for sso

时间:2018-06-09 21:33:37

标签: bigcommerce

在我的应用程序(node-bigcommerce-sdk)中,我的客户需要像在bc商店一样登录。我能够验证提供的电子邮件和密码是否正确。我无法找到一种方法来交换user_id和我的应用凭据以获取可在sso中使用的令牌(described here

之前我使用过 python sdk,我想在nodejs中做的部分如下

bc_client = b.api.BigcommerceApi(client_id, store_hash, access_token)
login_token = sdk.customer_login_token.create(bc_client, customer.id)

到目前为止(不工作)

let token = jwt.encode({
    "iss": account.clientId,
    "iat": 123456789,
    "jti": "uid-"+uid,
    "operation": "customer_login",
    "store_hash": account.storeHash,
    "customer_id": uid,
}, account.secret, 'HS512');
let sso_url = `${account.entry_url}/login/token/${token}`

收到示例令牌

eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJja244ZzN5Z3V4MmY0cG14ZWw0M2dqbmJjOTViZ2FrIiwiaWF0IjoxMjM0NTY3ODksImp0aSI6InVpZC0xIiwib3BlcmF0aW9uIjoiY3VzdG9tZXJfbG9naW4iLCJzdG9yZV9oYXNoIjoiMmJpaHByMnd2eiIsImN1c3RvbWVyX2lkIjoiMSJ9.n4lygAJtfqhcrHnGEWle1far-Ee69xrgym-HWFWWwNWXB1-hBziKC03SK_y8PYjLBL_n43Q6K07YH9ysSV5a4g

${account.entry_url}/login/token/${token}会在前端Invalid login. Please attempt to log in again.

上生成错误消息

0 个答案:

没有答案