使用nodejs将uber身份验证从一个路由传递到另一个路由

时间:2017-04-29 16:49:45

标签: node.js uber-api

所以我在nodejs中使用uber API尝试使用超值服务,例如价格和时间估算,以及通过我的应用程序的乘车请求。

我可以授权用户并使用回调网址返回,但我不知道如何将创建的访问令牌或product_id传递给特定/请求或/估计路由。

这是我的服务器文件:

//  Authenticate uber login with scopes
app.get('/v1.2/login', function(request, response) {
    var url = uber.getAuthorizeUrl(['profile', 'request', 'places', 
'all_trips', 'ride_widgets']);
    response.redirect(url);
    log(url);
    // User can manually go to authorization @ 
https://login.uber.com/oauth/v2/authorize?
client_id=LJGpana69PX47lPLFP5PpIdySYT5CT-G&response_type=code
});


//  Redirect script to authorize uber profile with oAuth 2.0
app.get('/v1.2/callback', function(request, response) {
    uber.authorizationAsync( {
        authorization_code: request.query.code
    })
    .spread(function(access_token, refresh_token, authorizedScopes, 
tokenExpiration) {
    // store the user id and associated access_token, refresh_token, 
scopes and token expiration date
        log('New access_token retrieved: ' + access_token);
        log('... token allows access to scopes: ' + authorizedScopes);
        log('... token is valid until: ' + tokenExpiration);
        log('... after token expiration, re-authorize using 
refresh_token: ' + refresh_token);

        var query = url.parse(request.url, true).query;
        return uber.products.getAllForLocationAsync(query.lat, 
query.lng);
    })
    .then(function(res) {
        log(res);
        // redirect the user back to your actual app
        response.redirect('../Client/index.html');
    })
    .error(function(err) {
        console.error(err);
    });
});


app.post('/v1.2/requests', function(request, response) {
    // extract the query from the request URL
    //var query = url.parse(request.url, true).query;

    uber.requests.createAsync({
        "fare_id": j,
        "start_latitude": request.query.lat,
        "start_longitude": request.query.lng,
        "end_latitude": request.query.goalat,
        "end_longitude": request.query.goalng
    })
    .then(function(res) { 
        log(res); 
        uber.requests.getCurrentAsync()
        .then(function(res) { 
            log(res); 
            res.send('got it');
        })
        .error(function(err) { 
            console.error(err); 
        });
    })
    .error(function(err) { 
        console.error(err); 
    });

});

就像我之前所说的那样,我只是无法传递访问令牌并将product_id传递给请求路由或其他人。文档并没有给出任何实例。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

对于您的第一个问题,通过执行uber.authorizationAsync,您已经获得了access_token。它是存储在包装器对象中的属性,您可以使用uber.access_token检索它。

关于您的第二个问题,您已经获得了uber.getAllForLocationAsync的可用产品ID。但是,您不会为请求调用缓存它们。我建议拆分产品ID调用as documented in the README for node-uber。这样,在请求的方法中,您可以调用product方法并获取包含发出请求所需的产品ID的JSON响应。