0
目前我有以下代碼。它正在工作,但並不完全符合我的需要。我需要從回覆中獲取json內容,只需一個參數即可。將Python POST請求轉換爲Python代碼
url = 'https://somelinkhere/get_info'
data = {'auth_info':'{"session_id":"blablablaidhere"}', 'params':'{"id":"12345"}'}
response = requests.post(url, data=data)
res = response.content
print res
現在返回
'�Z[o�6�+���֖���ې�0�{h�`
AK�M�"����o�9�dI���t��@RI<��"�GD�D��.3MDeN��
��hͣw�fY)SW����`0�{��$���L��Zxvww����~�qA��(�u*#��݅Pɣ����Km���'
etc.
什麼,我需要的是輸出資源[ 'balance_info'] [ '平衡']
'requests'不是標準庫。 – furas
捲曲轉換器:https:// shibukawa.github.io/curl_as_dsl/index.html – furas