twitter API error code
https://dev.twitter.com/docs/error-codes-responses
HTTP Status Codes
Code | Text | Description |
---|---|---|
200 | OK | Success! |
304 | Not Modified | There was no new data to return. |
400 | Bad Request | The request was invalid. An accompanying error message will explain why. This is the status code will be returned during version 1.0 rate limiting. In API v1.1, a request without authentication is considered invalid and you will get this response. |
401 | Unauthorized | Authentication credentials were missing or incorrect. |
403 | Forbidden | The request is understood, but it has been refused or access is not allowed. An accompanying error message will explain why. This code is used when requests are being denied due to update limits. |
404 | Not Found | The URI requested is invalid or the resource requested, such as a user, does not exists. Also returned when the requested format is not supported by the requested method. |
406 | Not Acceptable | Returned by the Search API when an invalid format is specified in the request. |
420 | Enhance Your Calm | Returned by the version 1 Search and Trends APIs when you are being rate limited. |
422 | Unprocessable Entity | Returned when an image uploaded to POST account/update_profile_banner is unable to be processed. |
429 | Too Many Requests | Returned in API v1.1 when a request cannot be served due to the application's rate limit having been exhausted for the resource. See Rate Limiting in API v1.1. |
500 | Internal Server Error | Something is broken. Please post to the group so the Twitter team can investigate. |
502 | Bad Gateway | Twitter is down or being upgraded. |
503 | Service Unavailable | The Twitter servers are up, but overloaded with requests. Try again later. |
504 | Gateway timeout | The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later. |
facebook API error code
http://developers.facebook.com/docs/reference/api/errors/
codes
Name | Code | Recovery Tactic | Note |
---|---|---|---|
OAuth | 190 | C unless a subcode is present | Most OAuth errors include a subcode. Use the subcode table to determine the correct recovery tactic. |
API Session | 102 | C unless a subcode is present | Most OAuth errors include a subcode. Use the subcode table to determine the correct recovery tactic. |
API Unknown | 1 | A | Server-side problem; app should retry after waiting, up to some app-defined threshold |
API Service | 2 | A | Server-side problem; app should retry after waiting, up to some app-defined threshold |
API Too Many Calls | 4 | A | Server-side throttling; app should retry after waiting |
API User Too Many Calls | 17 | A | Server-side throttling; app should retry after waiting |
API Permission Denied | 10 | D | User either has not granted a permission or removed a permission |
API Permission (range) | 200-299 | D | User either has not granted a permission or removed a permission |
subcodes
Name | Code | Recovery Tactic | Note |
---|---|---|---|
App Not Installed | 458 | C | User removed the app from user settings |
User Checkpointed | 459 | B | User needs to log onto www.facebook.com, or m.facebook.com |
Password Changed | 460 | B (iOS 6) or C | On iOS 6, if the user is authorized using integrated authentication, the user should be directed to Facebook settings on the device to set the new password; otherwise the user needs to reauthorize |
Expired | 463 | C | Token has expired and a new one needs to be requested |
Unconfirmed User | 464 | B | User needs to log onto www.facebook.com, or m.facebook.com |
'Note > 그밖에' 카테고리의 다른 글
OLPT 와 OLAP (0) | 2013.03.04 |
---|---|
자바스크립트 물결 연산자(~) (0) | 2013.02.26 |
javascript :: isEmpty(), isNotEmpty() 함수 구현 (0) | 2012.10.18 |
GET 방식 글자수 제한 (0) | 2012.08.09 |
Windows7 스티커 메모 백업 (0) | 2012.04.13 |