cancel
Showing results for 
Search instead for 
Did you mean: 

Using AngularJS module for Nuxeo platform

Erwan_
Champ on-the-rise
Champ on-the-rise

I've been working on developping an angular application following this tutorial : https://doc.nuxeo.com/display/NXDOC/Developing+with+AngularJS and using the samples from the following page : https://github.com/nuxeo-sandbox/angular-nuxeo

From that, I could :

  • List all document from a folder
  • Fetch a document from a folder

However, I couldn't find any example about CRUD methods on documents, or on users. These examples does not seem to work on Nuxeo 6 using the AngularJS module : https://github.com/dmetzler/nuxeo-book

Could I get any exemples on what's possible using the AngularJS module for the Nuxeo Automation and REST API. My id is to create a frontend portal of the Nuxeo platform for end users.

5 REPLIES 5

Erwan_
Champ on-the-rise
Champ on-the-rise

I’ve tried to get the current user of the platform, using the /api/automation/User.Get from the Automation API, but I can’t get it to work properly. It works fine in the Nuxeo API playground.

Michaël_Vachett
Champ in-the-making
Champ in-the-making

There was a typo in the angular-nuxeo client. It has been fixed. Just update the client in your project and it should work.

Thanks for your answer. It resolved the callback error, but I'm still getting another error in the JS console when calling 'User.Get' method.

Seems like operation User.Get does not exist on 6.0. Can you replace it by NuxeoPrincipal.Get and try again?

Thanks, it works fine!