Uber API getting 404 on /partners/trips, how to get more insights - uber-api

We are Uber partners and currently developing a platform for our members.
From Uber Developer Dashboard - Analytics we are receiving errors 404 & 500, in the API docs there are no corresponding details for this errors.
I know that in general the errors correspond with:
500 - server error (Uber side)
404 - not found (Uber side)
Does anybody knows how to get more insights on this errors, like what triggered them, what we should change or integrate?
Or from the developer dashboard what we should set?
Screenshot of today errors

Related

Facebook Graph API /debug_token empty response

I am using Facebook's PHP SDK (because it still works, even though it's deprecated, and there's no proper PHP alternative in place), and I've somewhat recently received messages from Facebook about my login app being deactivated because it "has too many errors". I decided to debug it and find out what seemed to be the problem, and it turned out that at the /debug_token step it receives an empty response from Facebook, which is, of course, invalid.
According to https://developers.facebook.com/docs/graph-api/reference/v15.0/debug_token,
this API endpoint should return information about an access token that I received from /oauth/access_token. I tried requesting for this debug information in Facebook's own Graph API Explorer, but the response I got was {"data":[]}. There were various errors if I provided the wrong data, so I would assume if the access token was wrong, I would have also received an error, but nope.
Commenting out the bit of code that does the access token debugging/validation fixes the whole thing, but that hardly seems like the right fix, although it counts for the end users.
The PHP SDK github repo is archived, I can't ask questions here, so I have no other choice but to ask here - 1) does anyone know if the debug_token step is required, and if yes, then 2) for what reasons, and 3) what could possibly be the problem here? At the moment it absolutely seems that the fault is at Facebook's end, I went through all the server requests and all of them work except this one.
I got the same issue about empty array from /debug_token endpoint. After investigations, it seems to be only on development applications. With live applications, /debug_token returns data ... Another weird behaviour from Facebook Graph API 🤷🏻‍♂️

Uber deliveries api returning 404

I am integrating uber rush api and following the documentation https://developer.uber.com/docs/rush they recommend to use the sandbox url for testing. But all the urls are returning 404 page not found any one integrated the api please comment any change in the api.
Example url :https://sandbox-api.uber.com/v1/deliveries/15692cdf-55f0-4f11-9a0d-ad4954851574
Uber RUSH API is not accepting any new integrations, and overall Uber RUSH is shutting down (https://www.theverge.com/2018/3/31/17184480/uber-uberrush-shut-down). As you might notice, that URL you linked for documentation is hidden from the developer documentation. Thanks.

Facebook Publish_Action Submission Failed (No api call 30 days)

I am unable to submit my application for review because of this message.
But I have made so many api calls by api explorer facebook. even i test with test users ... Your help will be highly appreciated on this
There is a current open bug report for this issue: https://developers.facebook.com/bugs/267332513657684/
Suggest you go and subscribe to it (bug reports are prioritized by the number of affected apps/developers), and perhaps mention your app id in the comments as well.
I assume you made the API calls in the API Explorer with the "API Explorer App", and not with your own one. You need to use/test the permission directly in your App, and NOT in the API Explorer. That´s where Facebook will test it too.

Facebook API Errors (1340004) and (1348058)

I'm trying to reduce the number of Facebook API Errors in our Unity Game and have currently got two error codes but cannot find anything on the FB developers website to help me locate and solve the problem. The error codes are display via Facebook Analytics.
Method: dialog:oauth
Error Code: 1340004
Error Message: Not Logged In: You are not logged in. Please login and try again.
Failues: 97.9K
Total Calls: 227.4K
Failure Rate: 43%
Method: dialog:oauth
Error Code: 1348058
Error Message: Please Confirm Email: The email address you entered has already been registered, but your account hasn't been confirmed
yet. You'll get an email soon with details on how to confirm your
account.
Failues: 32.4K
Total Calls: 227.4K
Failure Rate: 14.3%
I've not been able to recreate these myself so I'm not even sure if theses errors are client or server side but those failure rates seem really high.
Any calls I make via the client always checks the FB.IsLoggedIn is true before continuing and the documentation seems to indicate that the Facebook SDK handles refreshing Access tokens.
Refreshing access tokens on Mobile
The Facebook SDK will manage the lifetime of access tokens for you and
will handle making sure that tokens are refreshed before they expire.
The only other mention of the first error code (1340004) is from a stackoverflow post from 3 years ago (link to post here)
The only mention of the second error code (1348058) is from a closed github issue (link to post here) which seems to suggest that the app age restriction was causing there issue but our apps age restriction is currently set to "Anyone (13+) on the Facebook settings.
The LIVE version is on (7.3.0) of the Facebook Unity SDK but I've updated to the latest on the version yet to be released.
The only thing we do server side is check the access token returns the user's Facebook id, see below.
https://graph.facebook.com/me?fields=id&access_token=%s
Basically, has anyone else experienced these error codes or has any ideas on how to reduce them?
Any help is much appreciated.

Unable to pull most page insights metrics using Graph API

I am attempting to pull page insights metrics using the Facebook Graph API Explorer, but only a handful seem to be accessible. After failing to pull these metrics using the "read_insights" permission, I checked every box from "User Data Permissions", "Friends Data Permissions", and "Extended permissions." I still can not access most metrics.
An example GET request:
//insights/page_fans
...returns an empty dataset even though I am an administrator of this page and have permission to access to this data. I currently only get data back from: page_story_adds_unique, page_friends_of_fans, page_admin_num_posts, page_admin_num_posts_by_week.
Any insight would be appreciated.
See answer at https://stackoverflow.com/a/16894466/897489 - the default time span Facebook uses is not working because they appear to have missing data. You need to use since and until to get anything useful out.