feat: fetch BO for GRDF access token
#28 (closed)
how to test
- launch BO server with backoffice-server!104 (merged)
- edit
bo.js
to allow fetchinghttps://localhost
without certificate
Add this content to the top of the file
const https = require('https')
const instance = axios.create({
httpsAgent: new https.Agent({
rejectUnauthorized: false,
}),
})
and replace axios.get
with instance.get
yarn standalone
Edited by Bastien DUMONT