42api-client
v1.0.5
Published
42client api wrapper
Downloads
17
Readme
About The Project
This project is a 42api client wrapper api. It will allow you to interface 42API easily in your future applications. The 42api client is written in nodeJS so will be compatible on backend side but also in front end side.
Built With
- Nodejs
- Axios
- dotenv
- eslint
Getting Started
To install the 42api-client in your project this is very easy, you can do it through NPM or download the library and put it on your project modules.
Installation
- Install the paquet
npm install 42api-client
- Configure your env with the necessary variables as following
CLIENT_ID=GET_YOURS_FROM_INTRA
CLIENT_SECRET=GET_YOURS_FROM_INTRA
ENDPOINT_API=https://api.intra.42.fr/v2
SCOPES_API=profile public projects elearning tig forum
SLEEP_TIME=330
- Invoke the module as following:
const IntraClient = require('42api-client');
- TADAM :D
Usage
To give you an idea about how to use the library you can check the examples
folder or the following example:
const payload = {
'filter[campus_id]': 40,
sort: 'begin_at',
};
const res = await ic.get('exams', {}, payload);
console.log(res.data);
Roadmap
- [] Use retry variable instead of sleep
- [] Improve error handling
- [] ???
If you have any suggestion, please open an issue on the offical repository.
License
Distributed under the MIT License.
Contact
Salim Aouas (@Signal) - [email protected]