Code Monkey home page Code Monkey logo

Comments (11)

analog-nico avatar analog-nico commented on July 28, 2024

Hi @FredericHeem Request-Promise has the exact same API as Request. Only that you can now use promises instead of callbacks. In particular it means you can use alls options Request provides as well:

rp({
    uri : 'http://posttestserver.com/post.php',
    method : 'POST',
    qs: {
      name: 'some name',
      email: '[email protected]'
    }
  })
  .then(function (body) {
    // ...
  });

Or even the shorthand Request provides:

rp.post({
    uri : 'http://posttestserver.com/post.php',
    qs: {
      name: 'some name',
      email: '[email protected]'
    }
  })
  .then(function (body) {
    // ...
  });

Is that what you were looking for or did I miss your point?

from request-promise.

FredericHeem avatar FredericHeem commented on July 28, 2024

I meant post parameter in the body, not as a query string, FYI, this is the function that is supposed to be ported to request-promise:

Client.prototype._ops = function(ops, action, resCodes, param) {
    var me = this;
    var deferred = Q.defer();
    var data = updateRequestWithKey(this, {});
    if(param){
        data.json = param;
    }
    data.method = ops;

    request(this.url + action, data, function(err, res, body) {

        if (err) {
            return deferred.reject(err)
        }
        if (resCodes.indexOf(res.statusCode) == -1){
            return deferred.reject(bodyToError(body))
        } else {
            deferred.resolve(body);
        }
    })
    return deferred.promise;
}

In the meantime, using Promise.promisify(request) solves the issue.

from request-promise.

analog-nico avatar analog-nico commented on July 28, 2024

Oh, interesting. I didn't know of the possibility to pass the data as the second parameter. Is this somewhere documented? I looked through Request's whole README and didn't find it.

Could you give me an actual data object I can use for writing a test?

from request-promise.

analog-nico avatar analog-nico commented on July 28, 2024

I just made the following test which is successful:

it('for passing the data as second parameter', function (done) {

    rp('http://localhost:4000/200', { method: 'POST' })
        .then(function (body) {
            expect(body).to.eql('POST /200');
            done();
        })
        .catch(done);

});

Does this reproduce your scenario?

from request-promise.

FredericHeem avatar FredericHeem commented on July 28, 2024

Do you mind to try this ?

it('for passing the data as second parameter with data', function (done) {

    rp('http://localhost:4000/200', { method: 'POST', data: { json : {foo:"bar"}} })
        .then(function (body) {
            expect(body).to.eql('POST /200');
            done();
        })
        .catch(done);

});

from request-promise.

analog-nico avatar analog-nico commented on July 28, 2024

This one is successful:

it('for passing the data as the second parameter', function (done) {

    rp('http://localhost:4000/200', { method: 'POST', json: { foo: 'bar' } })
        .then(function (body) {
            expect(body).to.eql('POST /200 - {"foo":"bar"}');
            done();
        })
        .catch(done);

});

I had to change data: { json : {foo:"bar"}} to just json: { foo: 'bar' }. Anyway, I tested the same with plain Request and there it behaved exactly the same.

BTW, in theory any use case that works with plain Request should work with Request-Promise as well because Request-Promise is not a wrapper. It exposes the actual Request object. Anyway, that is just theory and now I wonder why your code is not working. Any ideas?

from request-promise.

analog-nico avatar analog-nico commented on July 28, 2024

Hi @FredericHeem did you find the cause or can I help you somehow finding it?

from request-promise.

FredericHeem avatar FredericHeem commented on July 28, 2024

For the time being, I sticked with Promise.promisify(request).
Thanks for your support

from request-promise.

fritx avatar fritx commented on July 28, 2024

Btw, what's the difference between bluebird.promisify(request) and request-promise?

from request-promise.

analog-nico avatar analog-nico commented on July 28, 2024

Hi @fritx Request-Promise is of course better tailored towards how Request is used. In particular, the simple option better devides which responses go to .then(...) and which responses go to .catch(...). Overall the requests can be written in a cleaner way.

from request-promise.

fritx avatar fritx commented on July 28, 2024

Thanks for explanation!

from request-promise.

Related Issues (20)

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.