Tag: 获取粉丝列表

SteemIt 获取微信群成员关注和粉丝的API

昨天在弄 RSS 2.0版本的时候顺便把这两个API放出来. 一个是获取粉丝列表, 一个是获取关注列表, 两个都是返回JSON格式的数据, 数据每小时更新缓存. 目前暂时只能获取微信群里的成员, 但不排除之后扩展到全网. 需要入群者可以联系 @justyy 举例说明 – 我的关注列表: https://uploadbeta.com/api/steemit/account/following/?cached&id=justyy 举例说明 – 我的粉丝列表: https://uploadbeta.com/api/steemit/account/followed/?cached&id=justyy 然后在PHP里可以简单封装一下: function getFollowing($id) { return json_decode(file_get_contents("https://uploadbeta.com/api/steemit/account/following/?cached&id=$id"), true); } function getFollowed($id) …