Skip to content
Advertisement

TypeError: ObjectId(”) is not JSON serializable

My response back from MongoDB after querying an aggregated function on document using Python, It returns valid response and i can print it but can not return it.

Error:

JavaScript

Print:

JavaScript

But When i try to return:

JavaScript

It is RESTfull call:

JavaScript

db is well connected and collection is there too and I got back valid expected result but when i try to return it gives me Json error. Any idea how to convert the response back into JSON. Thanks

Advertisement

Answer

You should define you own JSONEncoder and using it:

JavaScript

It’s also possible to use it in the following way.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement