I'm using django and tastypie for my api. the db is MySQL.
After a few days of fiddling around i managed to store emoji icons in the db using utf8mb4 character set.
When querying the db directly from the console (on a mac), i see the emoji fine, but when pulling them from the api (for example using the browser), the json shows question marks. This leads me to believe the issue is not with the db but with django/tastypie db connection.
How do i go about it?