我正在開發Linkedin Api。 在我OAuthLinkedin.cs, 我有以下幾點:Linkedin Api遠程服務器返回錯誤:(401)未授權
public string WebResponseGet(HttpWebRequest webRequest)
{
StreamReader responseReader = null;
string responseData = "";
try
{
responseReader = new StreamReader(webRequest.GetResponse().GetResponseStream());
responseData = responseReader.ReadToEnd();
}
catch
{
throw;
}
finally
{
webRequest.GetResponse().GetResponseStream().Close();
responseReader.Close();
responseReader = null;
}
return responseData
; } 我的代碼能夠得到一個oauthToken,oauthTokenSecret
WebResponseGet(HttpWebRequest webRequest)是它失敗的地方。 狀態:System.Net.WebExceptionStatus.Protocol錯誤遠程服務器返回錯誤:(401)未經授權。
在請求訪問linkedin的權限後,它能夠獲得令牌密碼。 但我不確定這是未經授權的錯誤。它是一些權限問題。 我在哪裏檢查這個
感謝 孫
希望你在這篇文章中匿名化你的令牌機密;-) – kroonwijk