Code Monkey home page Code Monkey logo

Comments (3)

sguilly avatar sguilly commented on July 2, 2024

In your custom route, you could add 'root: true' in return object

User.remoteMethod('greet', {
accepts: {arg: 'msg', type: 'string'},
returns: {arg: 'greeting', type: 'string', root: true}
});

see : https://loopback.io/doc/en/lb2/Remote-methods.html

from loopback-nodejs-client.

dahannajr avatar dahannajr commented on July 2, 2024

It's not so much a custom route, as a custom Model which is inheriting from the User model. So, in my NodeJS code, I'm using:

var LoopbackClient = require('loopback-nodejs-client');
var loopbackClient = new LoopbackClient(url, email, password);
loopbackClient.setCustomLoginPath("/CustomerUser/login");

....

loobackClient
   .createToken()
   .then((token) => {
      ....
    }
    .catch((err) => {
      ....
    }

The call to createToken is working fine and doing what it should be doing. But when I set DEBUG=LoopBackClient, I see that the debug entry from the LoopbackClient.js file on line 78 has the token ID stored in

result.data.id

and not

result.id

from loopback-nodejs-client.

sguilly avatar sguilly commented on July 2, 2024

Fix in 1.5.5

from loopback-nodejs-client.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.