Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uncaught in promise error consumer key is required error.consumerKey is required at new Woocommerce API(localhost:8100/build/vendor.js #257

Open
mariadebawi opened this issue Feb 25, 2019 · 0 comments

Comments

@mariadebawi
Copy link

I keep having this issue when I try my woocommerce api with this code form my Home.ts Ionic4 Angular7
**```
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
import * as WC from 'woocommerce-api';

@component({
selector: 'page-home',
templateUrl: 'home.html'
})

export class HomePage {
Woocommerce: any;
products: any[];

constructor(public navCtrl: NavController) {
this.Woocommerce = WC({
url: '',
Consumerkey: '',
ConsumerSecret: ''
});
this.Woocommerce.getAsyn("products").then((data) => {
console.log(JSON.parse(data.body));
this.products = JSON.parse(data.body).products;
}, (err) => {
console.log(err)
})

}
}

I don't understand the problem also when I try my API on Postman, it gives me
**```

{
  "code": "rest_no_route",
  "data": {
    "status": 404
  },
  "message": "No route was found matching the URL and request method"

als**o in my worpress I installed the plugins "JSON API" , "JSON API User" , "WP REST API - Meta Endpoints" and "WP REST API Controller" but the same errors .. Please help me . any Ideas ??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant