From 26deb88793685a1c8bda6741ca40c6e18d592078 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 22 Aug 2015 18:04:17 +0530 Subject: [PATCH] Update Pocket to use https as http no longer works --- recipes/readitlater.recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/readitlater.recipe b/recipes/readitlater.recipe index 029b88478f..44827def51 100644 --- a/recipes/readitlater.recipe +++ b/recipes/readitlater.recipe @@ -30,7 +30,7 @@ class Pocket(BasicNewsRecipe): publisher = 'getpocket.com' category = 'news, custom' - #Settings people change + # Settings people change max_articles_per_feed = 50 minimum_articles = 10 mark_as_read_after_dl = True # Set this to False for testing @@ -38,13 +38,13 @@ class Pocket(BasicNewsRecipe): # To filter by tag this needs to be a single tag in quotes; IE 'calibre' only_pull_tag = None - #You don't want to change anything under + # You don't want to change anything under no_stylesheets = True use_embedded_content = False needs_subscription = True articles_are_obfuscated = True apikey = '19eg0e47pbT32z4793Tf021k99Afl889' - index_url = u'http://getpocket.com' + index_url = u'https://getpocket.com' read_api_url = index_url + u'/v3/get' modify_api_url = index_url + u'/v3/send' legacy_login_url = index_url + u'/l' # We use this to cheat oAuth