Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
abh edited this page Sep 25, 2010
·
6 revisions
The YellowBot Python API helps make API requests and returns a Python dictionary with the response.
There's no particular error handling in the module currently. Errors are returned in the "system_error" and "error" keys in the dictionary.
fromyellowbotimportYellowBotapi=YellowBot(
api_key='...',
api_secret='...',
server='www.yellowbot.com'
)
data=api.call("test/echo", x=1, y=2, api_user_identifier="1")
printdata# "silent partner login" url for reputation managementurl=api.signin_url( domain="reputation.example.com", brand="example", api_user_identifier="abc123" )
printurlBest way for feedback is to create a ticket at http://www.localrobot.com/support/ or open a bug in the issue tracker.