Home

Awesome

node-mcdofrance

An API for McDonald's France

Usage

const Mcdo = require('node-mcdofrance');
const mcdo = new Mcdo({
  clientId: '',
  clientSecret: ''
});

Get token to access resources

mcdo.getAccessToken();

Get restaurant details

mcdo.getRestaurantDetails(restaurantId);

Get products

mcdo.getProducts();

Get product details

mcdo.getProductDetails(productId);