Quote:
Originally Posted by Mrs_Often
Many thanks for looking into it spMatti! It's very much appreciated. A shame that it appears to be near impossible. I do know Calibre is somehow able to collect the epub from instapaper directly using this and this. But I don't understand much of Python and I think Google Apps Script needs Java Script or html and I doubt whether Java Script can do the same – I have no idea.
|
I believe the answer should be "yes, you could do that", but I (a) don't have an instapaper account, and (b) have never written a Google Apps Script.
The
Instapaper API provides for OAuth authentication, which is how Google does authentications, so well supported by the Google Apps Script
Urlfetch service. It would seem that you could then use Instapaper's /api/1/bookmarks/list and /api/1/bookmarks/get_text APIs.
The one drawback I see is that it's a violation of Instapaper's API Terms-of-use to have the Apps script store your username/password, so you'd have to enter them every time you used the script.