[pinterest] update access_token (#83)

This commit is contained in:
Mike Fährmann
2018-04-16 09:46:45 +02:00
parent dd49127408
commit dbe250f7e5
2 changed files with 3 additions and 3 deletions

View File

@@ -135,8 +135,8 @@ class PinterestPinitExtractor(PinterestExtractor):
class PinterestAPI(): class PinterestAPI():
"""Minimal interface for the pinterest API""" """Minimal interface for the pinterest API"""
def __init__(self, extractor, access_token="AV2U9Oe6dyC2vfPugUnBvJ7Duxg9" def __init__(self, extractor, access_token="AfyIXxi1MJ6et0NlIl_vBchHbex-"
"FHCJPXPZIvRDXv9hvwBALwAAAAA"): "FSWylPyr2GJE2uu3W8A97QAAAAA"):
access_token = extractor.config("access-token", access_token) access_token = extractor.config("access-token", access_token)
self.session = extractor.session self.session = extractor.session
self.session.params["access_token"] = access_token self.session.params["access_token"] = access_token

View File

@@ -21,7 +21,7 @@ TRAVIS_SKIP = {
# temporary issues, etc. # temporary issues, etc.
BROKEN = { BROKEN = {
"pinterest", # access_token invalid ? "luscious", # layout change
"puremashiro", # online reader down "puremashiro", # online reader down
} }