dopecodez / Wikipedia

Wikipedia for node and the browser
MIT License
82 stars 19 forks source link

Implement pdf api #24

Closed dopecodez closed 3 years ago

dopecodez commented 3 years ago

There are a lot of new REST APIs for wikipedia present in the REST API docs.

We'll look through them one by one and implement the same. Any one who wants to pick up on any other REST API should ideally open a new issue.

The REST API has a /page/pdf{title} endpoint which provides the page in a pdf format.

The API returns a file for straight download, so my intial thought is we'll have to stream the data to actually get the file to the user.

Any discussion on this is welcome.