<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <script src="index.js"></script> <script> let options = {} let uri = 'http://localhost:3000/' //Base uri of APIed-Piper project let base_path = 'apiv2/' //base path of APIed-Piper project let api_rest = new codeRagSdk(uri, base_path, options) let main = async function () { // descubre el servidor de apied-piper y valida si funciona correctamente await api_rest.discover() await api_rest.stats() let login = await api_rest.login('Meinertzhagens-Haversack', 'Jared') let access = await api_rest.resourceAccess() } main() </script> </body> </html>