Getting data from Insights #1
artginzburg
started this conversation in
General
Replies: 1 comment 1 reply
|
It was easier than expected, using mitmproxy on macOS, proxying an iOS device. So, we got Part of the returned data (exactly what I wanted): {
"hours_spent": {
"movies": 657.8,
"shows": 1274.5,
"youtube": 0.0
}
}Another interesting thing is that it has "lists", which contains "shows", "want" and "watched", which are arrays of ids of movies/series. It also has "rates_statistics" and "rating", "want_count", "watched_by_type". All the useful stuff is here. P.S. Worth mentioning that if the profile is public, you can get the information without any auth whatsoever. Check this out: https://mustapp.com/api/users/id/330691 |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hey, I want to get Mustapp data from the Insights tab (on iOS, it's the second button in the top right of user profile).
Like the "Hours spent" stats, which I'd then show with some other stats at my website.
I'm not experienced in reverse-engineering private APIs (I envy people that are, that's one of the most helpful skills in engineering imho), but I'll try doing this and post here if I succeed.
If someone can help with this — let's collaborate here.
By the way, thanks @AN0NCER for starting this initiative!
All reactions