Package Exports
- @ovh-api-ca/auth
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ovh-api-ca/auth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
OVHCloud API client for auth region Canada
This module contains all typing needed to use OvhCloud auth APIs, with hi-level IntelliSense / Code Completion
Setup
With npm:
npm install --save @ovh-api/api
npm install --save @ovh-api-ca/me
npm install --save @ovh-api-ca/auth
... Add all APIs you needs
Usage
import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-ca/me';
import apiAuth from '@ovh-api-ca/auth';
const ovhEngine = new OvhEngine({
certCache: './cert-cache.json', // optional cache certificat on disk.
accessRules: 'GET /auth, GET /auth/*, GET /me', // optional limit the requested privileges.
});
const api = {
me: apiMe(ovhEngine),
auth: apiAuth(ovhEngine),
}
const test = async () => {
const { nichandle } = await api.me.$get();
const data = await api.auth.$get();
console.log(`${nichandle} have the following services:`);
console.log(data);
}