Scraping data from an app: real world example
substack.thewebscraping.club
Scraping data from an app: real world example
1–10 of 26 posts
Re: Scraping data from an app: real world example
#2Re: Scraping data from an app: real world example
#3Most app have some form of SSL pinning system in place which means that you have to perform additional work to allow the proxy to decrypt the HTTPS traffic.
I would like to see the data, if any, supporting this statement. I would expect some apps would use pinning, but most would not.
Google recommends against it.
https://developer.android.com/training/articles/security-ssl...
Re: Scraping data from an app: real world example
#4Most app have some form of SSL pinning system in place which means that you have to perform additional work to allow the proxy to decrypt the HTTPS traffic.
"Most app have some form of SSL pinning system in place..." I would like to see the data, if any, supporting this statement. I would expect some apps would use pinning, but most would not. Google recommends against it. https://developer.android.com/training/articles/security-ssl...
This actually applies to websites and browsers as well.
Re: Scraping data from an app: real world example
#5Earlier quoted context omitted.
"Most app have some form of SSL pinning system in place..." I would like to see the data, if any, supporting this statement. I would expect some apps would use pinning, but most would not. Google recommends against it. https://developer.android.com/training/articles/security-ssl...
>Caution: Certificate Pinning is not recommended for Android applications due to the high risk of future server configuration changes, such as changing to another Certificate Authority, rendering the application unable to connect to the server without receiving a client software update. This actually applies to websites and browsers as well.
Does this not make sense? Abu given website's beet interest is to continue to be reachable.
Re: Scraping data from an app: real world example
#6Re: Scraping data from an app: real world example
#7Re: Scraping data from an app: real world example
#8I have worked with the site mentioned in the article’s API previously. I am not sure why they used the overhead of a "scraping framework" when it was just JSON they needed to parse.
Re: Scraping data from an app: real world example
#9Most app have some form of SSL pinning system in place which means that you have to perform additional work to allow the proxy to decrypt the HTTPS traffic.