Magento 2 rest API with React native



我在使用OAuth 1.0的代码下方尝试了我的消费者密钥,消费者秘密,访问令牌,令牌秘密,我会收到响应消息:"具有指定密钥的消费者不存在"有人指导我正确的曲目

componentWillMount() {
    this.getProductDetail();
}
getProductDetail() {
    debugger
    let url = `http://13.233.175.20/index.php/rest/V1/products?fields=items&searchCriteria[pageSize]=1000`;     
    fetch(url, {
        method: 'GET',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
            "Authorization": 'OAuth oauth_consumer_key="m7eumn0mabhts4mlmggecrpikqg07u6l",
               oauth_token="4x1kjjkb0klj9mo4t88nv4xmulybszfi",
               oauth_signature_method="HMAC SHA1",oauth_timestamp="1550568244",
               oauth_nonce="JoNsTPLKHxA",oauth_version="1.0",
               oauth_signature="0b8SA2r4fHtV05G8yy%2BhYMqAH2M%3D"'
        },
    }).then((response) => response.json())
    .then((response) => {
        debugger;
        this.setState({
            productDetail: JSON.parse(response)
        });
    }).catch(function (error) {
            //Log an error here
        });
}

i有类似的错误,我正在使用过期的密钥。请通过重新授权密钥或创建新键来尝试:

来自Magento Admin仪表板

system->扩展 -> Integrations->添加新的集成/重新授权

相关内容

  • 没有找到相关文章

最新更新