diff --git a/lib/index.js b/lib/index.js index 9060571..6636ac6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -275,9 +275,11 @@ class Instagram { async getFollowers({ userId, first = 20, after }) { return this._getFollowData({ fieldName: 'edge_followed_by', - queryHash: '37479f2b8209594dde7facb0d904896a', + queryHash: 'c76146de99bb02f6415203be841dd25a', variables: { id: userId, + include_reel: true, + fetch_mutual: false, first, after } @@ -601,6 +603,14 @@ class Instagram { return this.request.post(`/web/likes/${mediaId}/unlike/`) } + async likeComment({ commentId }) { + return this.request.post(`/web/comments/like/${commentId}/`) + } + + async unlikeComment({ commentId }) { + return this.request.post(`/web/comments/unlike/${commentId}/`) + } + async save({ mediaId }) { return this.request.post(`/web/save/${mediaId}/save/`) }