I have this json response, consisting of unicode dictionary and having trouble to convert it as a python dictionary:
u'{
"event": {
"event_type": "signature_request_sent",
"event_time": "1407227830",
"event_hash": "567b6a342e29ceb8ad3a9641ccd27968f04f2c744c7dd3af8a1922f4eaa5d337",
"event_metadata": {
"related_signature_id": null,
"reported_for_account_id": null,
"reported_for_app_id": "290e6bb260fed5613b68066084fc77ff",
"event_message": null
}
},
"account_guid": null,
"client_id": "290e6bb260fed5613b68066084fc77ff",
"signature_request": {
"title": "My First embedded signature request with a template",
"original_title": "My First embedded signature request with a template",
"subject": "My First embedded signature request with a template",
"message": "Awesome, right?",
"test_mode": true,
"is_complete": false,
"has_error": false,
"custom_fields": [
],
"response_data": [
],
"signing_url": null,
"signing_redirect_url": null,
"final_copy_uri": "",
"signatures": [
{
"signature_id": "9c5d829af9e0566134dd28bd064a2fe8",
"has_pin": false,
"signer_email_address": "napopasas@gmail.com",
"order": null,
"status_code": "awaiting_signature",
"signed_at": null,
"last_viewed_at": null,
"last_reminded_at": null
}
],
"cc_email_addresses": [
]
}
}'
tried following solution without success (ValueError for string)