1
我有這樣的API調用:如何找出字典對象中鍵的值?
HttpResponse<string> response =
Unirest.get("https://wordsapiv1.p.mashape.com/words/" + word.Name)
.header("X-Mashape-Key", "xxxx")
.header("Accept", "application/json")
.asJson<string>();
下面是HttpResponse
類:
public class HttpResponse<T>
{
public HttpResponse(HttpResponseMessage response);
public T Body { get; set; }
public int Code { get; }
public Dictionary<string, string> Headers { get; }
public Stream Raw { get; }
}
我沒有問題得到機構(response.Body
)或代碼,但我想做些什麼是得到這個標頭:
[7] = {[X-RateLimit-requests-Remaining, 2498]}
有人可以告訴我怎麼可以檢查返回的響應,並找出值的X-RateLimit-requests-Remaining
?
如何:'response.Headers [「X-RateLimit - 請求 - 剩餘「]'?所以你知道字典是如何工作的嗎? – ckruczek
這是什麼'Unirest',爲什麼它的方法不遵循.NET命名約定? –
@MattiVirkkunen這是一個[輕量級的HTTP請求庫](http://unirest.io/net.html),命名可能是由於兼容性原因與其他支持的語言。 –