Skip to content

Instantly share code, notes, and snippets.

@NorthIsUp
Created January 27, 2012 22:05
Show Gist options
  • Save NorthIsUp/1691177 to your computer and use it in GitHub Desktop.
Save NorthIsUp/1691177 to your computer and use it in GitHub Desktop.
disqus list post example
@app.route("/forums/listposts/<shortname>")
def goodbye(shortname):
cu = current_user()
if cu:
return str(disqus.forums.listPosts(access_token=cu.access_token, forum=shortname))
else:
return "not auth'd!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment