2つの異なるUber API(uber.com/apiの両方)とは異なる結果が表示されています。異なるUber APIからの異なる結果
最初のAPIはwww.uber.com/api/fare-estimate
です。perMinute
の価格は$ 0.13です。
第2のAPIはapi.uber.com/v1.2/products/{product_id}
です。cost_per_distance
は$ 0.16です。
この違いはどこから来ていますか?どのAPIを使用する必要がありますか? UIを使用して価格見積もり(www.uber.com/fare-estimate)を取得すると、0.16ドルではなく0.13ドルの価格が表示されますが、古いAPI(www.uber.com/api/fare-estimate) )は非難されていますか?
参考: まずAPIの例:curl https://www.uber.com/api/fare-estimate?pickupLat=39.739233&pickupLng=-104.990252&destinationLat=39.736160&destinationLng=-104.998695
セカンドAPIの例:最も正確な見積もりのためにcurl -H 'Authorization: Token {developer_token}' -H 'Accept-Language: en_US' -H 'Content-Type: application/json' "https://api.uber.com/v1.2/products/f464d065-be99-40bd-95b5-ac0c784930e8"
おかげで、M.