Uber API Payment method & Ride Estimate 500 internal server error

181 Views Asked by At

we have been working with the Uber API, after our scopes got approved and we are testing it for production we are getting 500 errors on payment & ride estimate.

URL We are using for request is

NSString *url = [NSString stringWithFormat:@"%@/payment-methods",baseURL];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url]];
[request addValue:@"en_US" forHTTPHeaderField:@"Accept-Language"];
[request addValue:@"application/json; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[request addValue:[NSString stringWithFormat:@"Bearer %@", delegate->AccessToken] forHTTPHeaderField:@"Authorization"];

[self performNetworkOperationWithRequest:request completionHandler:^(NSDictionary *requestDictionary, NSURLResponse *response, NSError *error) {


    if(!error)
    {

    }
    else
    {

    }}];

where baseURL = @"https://api.uber.com/v1.2"; And delegate->AccessToken= AccessToken we get at the time of Auth2.

NSHTTPURLResponse: 0x6080006374c0> { URL: https://api.uber.com/v1.2/payment-methods } { status code: 500, headers {
   Connection = "keep-alive";
   "Content-Length" = 75;
   "Content-Type" = "application/json";
   Date = "Mon, 02 Jan 2017 07:44:43 GMT";
   Server = nginx;
   "Strict-Transport-Security" = "max-age=604800";
   "X-Content-Type-Options" = nosniff;
   "X-Uber-App" = "uberex-nonsandbox, migrator-uberex-optimus";
   "X-XSS-Protection" = "1; mode=block";
} }
0

There are 0 best solutions below