### Retrieve Received Likes - JSON API Example Source: https://open.weibo.com/wiki/C/2/attitudes/to_me/biz-en This JSON example demonstrates a successful response from the Weibo Open Platform API when retrieving a list of likes received by the current user. It includes details about the liker, the liked status, and pagination information. An alternative example shows a typical error response structure. ```json //成功返回 { "attitudes": [ { "id": 3479706106103106, "created_at": "Thu Aug 16 17:40:44 +0800 2012", "attitude": "smile", "last_attitude": "smile", "source": "密友", "user": { ... }, "status": { ... } }, ... ], "hasvisible": false, "previous_cursor": 0, "next_cursor": 0, "total_number": 1 } //失败返回 { "request": "/2/attitudes/to_me.json", "error_code": "243XX", "error": "error message." } ```