# twitter-m3 **Repository Path**: observerw/twitter-m3 ## Basic Information - **Project Name**: twitter-m3 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-19 - **Last Updated**: 2023-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 推特用户画像识别 ## 输入格式 | 字段 | 描述 | | ------------- | ------------------------------------------------------------- | | `uid` | 用户的UID | | `name` | 用户的用户名,可以包含Unicode字符 | | `screen_name` | 用户的屏幕名,**不可以包含Unicode字符**(如果包含的话会报错) | | `description` | 用户的个人描述 | | `img_url` | 用户的头像链接 | ### 例 ```json [ { "uid": 114514, "name": "Mike Archer", "screen_name": "Mike Archer", "description": "\u201dEverything is impossible until it happens.\u201d Buddhism, optimism, Trance, Green Party", "img_url": "https://pic1.zhimg.com/v2-0e57551390a3c3ce3c33d6b200375af0_xll.jpg?source=32738c0c" }, { "uid": 1378, "name": "Michael (मुकेश)", "screen_name": "MParekh", "description": "Tech OODA Looper.Globalist. Born Mukesh मुकेश .Tech Investor/Builder.LT Tech optimist on‘Reset to Zero’.Ex-GS Partner/Internet Ax. Syntopical Grokker.", "img_url": "https://pbs.twimg.com/profile_images/1376585024229806082/tgEmPIYC_200x200.jpg" }, { "uid": 1379, "name": "Michael (मुकेश)", "screen_name": "MParekh", "description": "Tech OODA Looper.Globalist. Born Mukesh मुकेश .Tech Investor/Builder.LT Tech optimist on‘Reset to Zero’.Ex-GS Partner/Internet Ax. Syntopical Grokker.", "img_url": "https://baidu.com" } ] ``` ## 输出格式 | 字段 | 描述 | | --------- | ------------------------------------- | | `uid` | 用户的UID | | `age` | 用户的年龄 | | `org` | 用户是否是机构账户 | | `status` | 推理是否成功 | | `message` | 报错信息,仅当`status`为`error`时存在 | * 当推理失败(即`status`字段为`error`)时,返回结果将只包含`status`和`message`两个字段。 ### 例 ```json [ { "age": ">=40", "gender": "male", "org": "non-org", "status": "success", "uid": 114514 }, { "age": ">=40", "gender": "male", "org": "non-org", "status": "success", "uid": 1378 }, { "uid": 1379, "status": "error", "message" "download error" } ] ```