Python3獲取新浪微博內容亂碼問題
阿新 • • 發佈:2019-01-26
錯誤 亂碼問題 sof lease enc 程序 忽略 打印 acc
用python獲取新浪微博最近發布內容的時候調用 public_timeline()函數的返回值是個jsonDict對象,首先需要將該對象通過json.dumps函數轉換成字符串,然後對該字符串用GBK進行編碼和解碼,註意編碼的時候函數encode的第二個參數要使用ignore(默認是strict),以防止當解碼錯誤的時候報錯而使程序意外退出 。
import webbrowser
import sinaweibopy3
from time import sleep
import json
def getLotsOfWeibo(searchStr):
APP_KEY=‘你的key‘
APP_SECRET=‘你的密碼‘
REDIRECT_URL=‘https://api.weibo.com/oauth2/default.html‘
client=sinaweibopy3.APIClient(app_key=APP_KEY,app_secret=APP_SECRET,redirect_uri=REDIRECT_URL)
url = client.get_authorize_url()
print(url)
webbrowser.open_new(url)
result = client.request_access_token(
input("please input code : ")) # Enter the CODE obtained in the authorized address
print(result)
client.set_access_token(result.access_token, result.expires_in)
t=client.public_timeline()
t1=json.dumps(t,ensure_ascii=False)
t1=t1.encode(‘gbk‘,‘ignore‘).decode(‘gbk‘)#采用GBK打印,忽略編碼錯誤否則會報錯
print (t1) # get the latest public Weibo
來源:我的個人博客
Python3獲取新浪微博內容亂碼問題