uber-api

This endpoint requires at least one of the following scopes: profile, surge_accept, request, request.delegate

我是研究僧i 提交于 2021-02-08 10:12:35
问题 I am developing an application using Uber API, I used Retrofit library for retrieving data from API. I have authorized my application using below endpoint: https://login.uber.com/oauth/v2/authorize?client_id=<CLIENT_ID>&response_type=code But when I tried to get estimates of products using below endpoint: https://api.uber.com/v1.2/requests/estimate?start_latitude=37.7752278&start_longitude=-122.4197513&end_latitude=37.7773228&end_longitude=-122.4272052 Then I got an issue: This endpoint

Cannot add scope in Uber Developer Dashboard

…衆ロ難τιáo~ 提交于 2021-02-05 20:36:42
问题 I'm trying to authenticate against the Uber REST API using Auth 2.0, but there seems to be a problem with scopes. As soon as I specify a scope (even non privileged ones), the /authorize request fails with "Invalid scope". If I exclude the scope parameter it seems to work fine. The developer dashboard tells me to enter the scopes I want to use, but there is no way to do this on the Auth page. It looks like I should have a way to select scopes here but there is no input at all. (Tried different

Cannot add scope in Uber Developer Dashboard

僤鯓⒐⒋嵵緔 提交于 2021-02-05 20:36:15
问题 I'm trying to authenticate against the Uber REST API using Auth 2.0, but there seems to be a problem with scopes. As soon as I specify a scope (even non privileged ones), the /authorize request fails with "Invalid scope". If I exclude the scope parameter it seems to work fine. The developer dashboard tells me to enter the scopes I want to use, but there is no way to do this on the Auth page. It looks like I should have a way to select scopes here but there is no input at all. (Tried different

Braintree Production Account Request Declined

与世无争的帅哥 提交于 2020-07-23 07:42:06
问题 I am working on a ride-sharing app where riders pay via paypal to the company and driver's payout is done through Paypal payout API. We used Braintree IOS and Android SDK and successfully completed the integration including storing the customers in vault on braintree, charge them upon trip completion through braintree REST API etc. Now when we were ready to go live, I tried to get access to production account on Braintree. They have an option to login with PayPal. I have a PayPal business

Braintree Production Account Request Declined

血红的双手。 提交于 2020-07-23 07:40:13
问题 I am working on a ride-sharing app where riders pay via paypal to the company and driver's payout is done through Paypal payout API. We used Braintree IOS and Android SDK and successfully completed the integration including storing the customers in vault on braintree, charge them upon trip completion through braintree REST API etc. Now when we were ready to go live, I tried to get access to production account on Braintree. They have an option to login with PayPal. I have a PayPal business

UBER Ride Reminder Api Responding 403 Forbidden Response

孤街醉人 提交于 2020-01-25 22:05:11
问题 I am working on UBER ride reminders api.i am trying to post ride reminder using my server_token.passing required parameter but in response i am getting 403 forbidden response. my http request is as follows. NSDictionary *event=@{ @"time":event_time, @"name":event_name }; NSMutableDictionary *params = [[NSMutableDictionary alloc]init]; [params setValue:reminder.reminder_time forKey:@"reminder_time"]; [params setValue:reminder.phone_number forKey:@"phone_number"]; [params setValue:event forKey:

Access to partner.admin_accounts

天大地大妈咪最大 提交于 2020-01-16 17:12:09
问题 How we can get access to partner.admin_accounts scope ? We catch response: {"code":"unauthorized","message":"This endpoint requires all of the following scopes: partner.admin_accounts"} When trying to GET https://api.uber.com/v1/partners/drivers upd: full code, we using GAS function uberGET(){ var token = 'my_secret_tocen'; var url = 'https://api.uber.com/v1/partners/drivers'; var header = {'Content-Type': 'application/json', 'Authorization': 'Bearer '+token}; var options = {'method':'GET',