API documentation? #80
-
Thanks for sharing this nice software. I'm testing it while comparing with miniflux. I reviewed the code but did not help for above case.
This is not
hints? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello, For the export, the URL is: It is not part of the API. As you can see this is in the article Flask Blueprint (views/article.py). For But /api/v2.0/articles should work ( Anyway, the API is not really used by the front-end (a little). I planed to re-implement it with Flask-RestX and make it more complete. I think I will work on that this week: implementing a new API for the articles and the feeds. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick feedback! |
Beta Was this translation helpful? Give feedback.
Hello,
For the export, the URL is:
https://www.newspipe.org/articles/export
It is not part of the API. As you can see this is in the article Flask Blueprint (views/article.py).
From the Web interface, you can go in your personal "Your data" section (
/user/management
). There is a button for this feature.For
res3
, it's normal you can not do a GET on /api/v2.0/article. You must specify an id.But /api/v2.0/articles should work (
res4
), so I think there is an issue. I just tested.Anyway, the API is not really used by the front-end (a little). I planed to re-implement it with Flask-RestX and make it more complete.
It is currently using flask_restful project which is not really well maintained…