352-uber 中文文档教程

发布于 9年前 浏览 26 项目主页 更新于 3年前

uber-api

Uber API 的 NodeJS 实现。 最新更新已实施承诺模式。

Installation

npm install uber-api

Usage

var Uber = require('uber-api')({server_token:'YOUR SERVER TOKEN',version:'v1'}),
    lat = 36,
    lon = -94;

Uber.getProducts(lat, lon, function(error, response) {
  if (error) {
    console.log(error);
  } else {
    console.log(response);
  }
});

Uber.getProducts(lat, lon).then(function(response){
  console.log(response);
}, function(error){
  console.error(response);
});

API Reference

getProducts(latitude, longitude[, callback])
getPriceEstimate(start_latitude, start_longitude, end_latitude, end_longitude[, callback])
getTimeEstimate(start_latitude, start_longitude [,customer_uuid] [,product_id][, callback])
getPromotions(start_latitude, start_longitued, end_latitude, end_longitued [, callback])
+getMe([callback])
+†getHistory([callback])

+这些需要您可以通过 OAuth2 获得的特殊令牌。 然后,您可以使用 {bearer_token:'YOUR BEARER TOKEN',version:'v1'} 初始化 Uber。

† 此功能检查传入的版本,如果是“v1”,将自动调整为“v1.1”。 根据 Uber 文档 (https://developer.uber.com/v1/endpoints/#user-activity-v1) v1 需要特殊许可才能使用。 该库当前假定此权限不存在。

速率限制状态作为响应对象的成员返回。

Uber.getProducts(lat, lon).then(function(response){
  console.log(response.rate_limit);
});

uber-api

NodeJS implementation of Uber API. The latest update has promise pattern implemented.

Installation

npm install uber-api

Usage

var Uber = require('uber-api')({server_token:'YOUR SERVER TOKEN',version:'v1'}),
    lat = 36,
    lon = -94;

Uber.getProducts(lat, lon, function(error, response) {
  if (error) {
    console.log(error);
  } else {
    console.log(response);
  }
});

Uber.getProducts(lat, lon).then(function(response){
  console.log(response);
}, function(error){
  console.error(response);
});

API Reference

getProducts(latitude, longitude[, callback])
getPriceEstimate(start_latitude, start_longitude, end_latitude, end_longitude[, callback])
getTimeEstimate(start_latitude, start_longitude [,customer_uuid] [,product_id][, callback])
getPromotions(start_latitude, start_longitued, end_latitude, end_longitued [, callback])
+getMe([callback])
+†getHistory([callback])

+These require special tokens you can get via OAuth2. You can then initialize Uber with {bearer_token:'YOUR BEARER TOKEN',version:'v1'}.

† This functionality inspects the version passed in and if it is "v1" will auto adjust to "v1.1". As per the Uber documentation (https://developer.uber.com/v1/endpoints/#user-activity-v1) v1 requires special permission to use. This library currently assumes this permission is not in place.

Rate limit state is returned as a member of the response object.

Uber.getProducts(lat, lon).then(function(response){
  console.log(response.rate_limit);
});
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文