res = requests.post(url.format(access_token), json.dumps(data, ensure_ascii=False).encode('utf-8'))
res.raise_for_status()
return res.text
If ``ensure_ascii`` is false, then the return value will be a ``unicode`` instance subject to normal Python ``str`` to ``unicode`` coercion rules instead of being escaped to an ASCII ``str``.