Created
July 31, 2013 19:53
-
-
Save johnsheehan/6125526 to your computer and use it in GitHub Desktop.
troubleshooting bitly API call with Runscope
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import bitly_api | |
import os | |
from config import config | |
# sign up for a free account at runscope.com and make | |
# note of your bucket key | |
# connect to bitly | |
conn_btly = bitly_api.Connection(access_token=config['ACCESS_TOKEN']) | |
conn_btly.host = 'api-bit-ly-runscopebucketkey.runscope.net' | |
conn_btly.ssl_host = 'api--ssl-bit-ly-runscopebucketkey.runscope.net' | |
# make request as normal | |
links = conn_btly.user_link_history() | |
# check your Runscope dashboard to see the traffic that was sent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment