You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is your thoughts on mixing different types of requests? Im talking about the public (_gql & _a1) and private (_v1) requests.
Lets say for example using this ones in this order:
user_followers_gql(user_id: str, amount: int = 0) - List[UserShort] - Get user’s followers information by Public Graphql API
user_info(user_id: str) - User - Get user info
media_info_v1(media_pk: int) - Media - Get Media from PK by Private Mobile API
Thats public graphql, then public(?), then private mobile api. That doesnt look like a normal insta mobile app behavior, right?
Also, when mentioning "Low level methods" we are refering to the private requests, right? Meaning these are lower risk of being detected as automation/a bot than using the public functions?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
What is your thoughts on mixing different types of requests? Im talking about the public (_gql & _a1) and private (_v1) requests.
Lets say for example using this ones in this order:
user_followers_gql(user_id: str, amount: int = 0) - List[UserShort] - Get user’s followers information by Public Graphql API
user_info(user_id: str) - User - Get user info
media_info_v1(media_pk: int) - Media - Get Media from PK by Private Mobile API
Thats public graphql, then public(?), then private mobile api. That doesnt look like a normal insta mobile app behavior, right?
Also, when mentioning "Low level methods" we are refering to the private requests, right? Meaning these are lower risk of being detected as automation/a bot than using the public functions?
Beta Was this translation helpful? Give feedback.
All reactions