1
我使用的Web API查詢Twitter的REST API來分析Twitter的API時拋出異常,我嘗試使用DateTime.ParseExact(...)
解析created_at
價值爲DateTime
:DateTime.ParseExact()試圖created_at
CreatedAt = DateTime.ParseExact(tweet["created_at"],
"ddd MMM dd HH:mm:ss K yyyy",
CultureInfo.InvariantCulture,
DateTimeStyles.AdjustToUniversal)
我得到以下例外:
'System.DateTime.ParseExact(string,string,System.IFormatProvider,System.Globalization.DateTimeStyles)'的最佳重載方法匹配有一些無效參數。
的tweet["created_at"]
一個例子值爲:星期三02月15日19:06:56 +0000 2017年
謝謝,就是這樣。 –