-
Can swiftagram be used to retrieve a list of incoming follow request for a private account from https://www.instagram.com/accounts/activity/?followRequests=1 and confirm/reject them? |
Beta Was this translation helpful? Give feedback.
Answered by
sbertix
Aug 16, 2021
Replies: 1 comment
-
Hey @MarkPatk, Sure. You can get all following requests for your logged in accounts with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
markpatx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @MarkPatk,
Sure. You can get all following requests for your logged in accounts with
Endpoint.users.requests
, accept them withEndpoint.user(/* the id for the user who sent you the request */).request.approve()
and decline them withEndpoint.user(/* the id for the user who sent you the request */).request.decline()
.