Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/al-muhandis/fp-instagramscrapper
Instagram Scrapper for FreePascal
https://github.com/al-muhandis/fp-instagramscrapper
freepascal instagram instagram-scraper lazarus pascal
Last synced: about 1 month ago
JSON representation
Instagram Scrapper for FreePascal
- Host: GitHub
- URL: https://github.com/al-muhandis/fp-instagramscrapper
- Owner: Al-Muhandis
- Created: 2018-11-20T07:15:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-20T18:18:29.000Z (about 1 month ago)
- Last Synced: 2024-12-20T19:29:31.780Z (about 1 month ago)
- Topics: freepascal, instagram, instagram-scraper, lazarus, pascal
- Language: Pascal
- Size: 4.03 MB
- Stars: 11
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fp-instagramscrapper
Instagram Scrapper for FreePascalThe demo shows an example of getting the values you need https://github.com/Al-Muhandis/fp-instagramscrapper/tree/master/demo
With the `TInstagramParser` class, you can get a bunch of other properties, media content, comments, stories, highlights etc.
``` Pascal
uses
... ...,
fphttpclientbroker;
// ... ... ...```
In case of using the _synapse_ network components You should not forget to add in the dependency the `laz_synapse` package and `ssl_openssl` unit from the same package.
In case of using the _Indy 10_ network components You should not forget to add in the dependency the `indylaz` package and use common recommendation for Indy 10 in FPC.Except for the need to use a proxy, it is recommended to use the native HTTP client class. At the moment synapse works perfectly with proxy in Windows, Indy 10 works in both Windows and Linux, but it is very complex and with a lot of its nuances.
Suggestions and improvements are welcome.