Updated to have an async http server to get the code

pull/38/head
David Trail 10 years ago
parent fb8effe387
commit 66fec5e1b3

@ -15,22 +15,46 @@ refresh_access_information() instead of get_authorize_url() ->
get_access_information(). get_access_information().
''' '''
import praw import praw, asyncio
from time import sleep
from praw.errors import HTTPException from praw.errors import HTTPException
from tornado import gen, web
from tornado.ioloop import IOLoop
from tornado.httpserver import HTTPServer
r = praw.Reddit('Shreddit refresh token grabber') r = praw.Reddit('Shreddit refresh token grabber')
class Page(web.RequestHandler):
def get(self):
code = self.get_argument("code", default=None, strip=False)
self.write("Success! Your code: %s" % code)
IOLoop.current().stop()
self.login(code)
def login(self, code):
deets = r.get_access_information(code)
print("oauth_refresh_token (put in praw.ini): %s" % deets['refresh_token'])
r.set_access_credentials(**deets)
# TODO: Automatically update praw.ini with refresh_token
application = web.Application([
(r"/authorize_callback", Page),
])
try: try:
r.refresh_access_information() r.refresh_access_information()
except HTTPException: except HTTPException:
url = r.get_authorize_url('uniqueKey', ['identity', 'read', 'vote', 'edit'], True) url = r.get_authorize_url('uniqueKey', ['identity', 'read', 'vote', 'edit'], True)
print("Please open: ", url) print("Please open: ", url)
access_key = input("Enter your access key (secret param): ") server = HTTPServer(application)
deets = r.get_access_information(access_key) server.listen(65010)
print("oauth_refresh_token (put in praw.ini): %s" % deets['refresh_token']) IOLoop.current().start()
r.set_access_credentials(**deets)
if r.user == None: if r.user == None:
print("Failed to log in. Something went wrong!") print("Failed to log in. Something went wrong!")
else: else:
print("Logged in as %s.\n" % r.user) print("Logged in as %s." % r.user)
print()

Loading…
Cancel
Save