I want to download the links of all the answers by a specific user on Stackoverflow. I am not familiar with networking and Javascript. But i am used to working with C++ and Python. So i want to know how can i download the links to all the answers by a specific user on SO programatically using any programming language. That is, any language can be used like javascript, python, C++ etc.
Basically i want to download the links to all answers that i have answered on SO programatically and looking for a working example. I am tagging this question with multiple languages since using a particular language is not a requirement. I haven't tried coding it myself since i don't even know how/where to start.
There is documentation available on this page: https://api.stackexchange.com/docs/answers-on-users
The user ids can be retrieved from the user's stackoverflow profile page. To run this programatically you will likely need to get an access token. https://api.stackexchange.com/docs/authentication
For example the Rest API call would look something like this:
https://api.stackexchange.com/2.3/users/USER_ID/answers?key=SOME_KEY((&site=stackoverflow&order=desc&sort=activity&filter=default
Also you can specify multiple users at once.