This document covers the errors that may occur when implementing or calling the Kakao Talk Social APIs and their solutions.
Refer to Common error codes for error information.
When using the Friend picker with JavaScript SDK, errors are returned with code
and msg
according to the response format.
Error Code | Cause | Solution |
---|---|---|
-204 |
No friends retrieved | Add friends and try again. |
-400 |
Invalid parameters used | Fix the parameters and try again. |
-403 |
Request made from an unsupported browser | Check supported browsers and try again from a supported browser. |
Here are the errors you may encounter when you call the Friend picker using Android SDK, iOS SDK, or Flutter SDK.
Error Code | Cause | Solution |
---|---|---|
BadParameter |
Set minPickableCount to a value less than 1 |
Set minPickableCount to the minimum value of 1 or greater |
BadParameter |
Set maxPickableCount to a value greater than 100 |
Set maxPickableCount to the maximum value of 100 or less |
BadParameter |
Set minPickableCount to a value greater than maxPickableCount |
Set minPickableCount to a value less than or equal to maxPickableCount |
Cancelled |
User selected [Cancel] button on the picker | - |