I am reciving this dictionary object from a react native client. i am using django rest framework as back end. i was to parse the values of pushToken and user object in my django backend.
Here is the object,
{
'pushToken': { 'type': 'expo', 'data': 'ExponentPushToken[OQ927mOVsi3_j2e]' },
'user': '{"token":"78d7fa3e903b61ac14c0119c9676b24512","user_id":3,"username":"vitor","email":"vitor@reactnative.com"}',
}
So far i have tried to covert in into json object using json.dump()... But it did not works