How to use the @alfresco/js-api.DiscoveryApi function in @alfresco/js-api

To help you get started, we’ve selected a few @alfresco/js-api examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Alfresco / alfresco-js-api / test / integration / test-node / login-ecm.ts View on Github external
alfrescoApi.login(program.username, program.password).then(() => {
        let discovery = new DiscoveryApi(alfrescoApi);
        discovery.getRepositoryInformation().then(
            (ecmVers) => {
                console.log('ecmVers' + JSON.stringify(ecmVers));
            },
            () => {
                process.exit(1);
            });
    }, () => {
        process.exit(1);
github Alfresco / alfresco-js-api / test / performance / test-webpack / index.ts View on Github external
constructor() {
        let alfrescoApi = new AlfrescoApi();
        alfrescoApi.setConfig({
            provider: 'ECM',
            hostEcm: 'http://localhost:3000',
            authType: 'BASIC',
            contextRoot: ''
        });

        let discovery = new DiscoveryApi(alfrescoApi);
        discovery.getRepositoryInformation().then(
            (ecmVers) => {
                console.log('ecmVers' + ecmVers);
            },
            (ecmVers) => {
                console.log('error ecmvers' + ecmVers);
            });
    }
}