2015-01-02 4 views
1

LinkedIn article을 게시했으며이 특정 기사에 대한 의견을 검색하려고합니다. 덧글 단추를 마우스 오른쪽 버튼으로 클릭하고 링크 주소를 복사하여 기사 ID을 받았습니다. aritcleId = 7434836657526032700을 입력해야합니다. GET http://api.linkedin.com/v1/posts/{post-id}/comments을 사용해야하나요? {post-id}는 (는) articleId와 같습니까?articleId 주어진 특정 linkedin 기사에 대한 모든 의견을 찾는 방법?

다음은 성공 후 내 코드입니다. AuthorizationLinkGet 전화.

string oauth_token = Request.QueryString["oauth_token"]; 
string oauth_verifier = Request.QueryString["oauth_verifier"]; 
if (oauth_token != null && oauth_verifier != null) 
{ 
    Application["oauth_token"] = oauth_token; 
    Application["oauth_verifier"] = oauth_verifier; 

    //get access token 
    _oauth.Token = oauth_token; 
    _oauth.TokenSecret = Application["reuqestTokenSecret"].ToString(); 
    _oauth.Verifier = oauth_verifier; 

    _oauth.AccessTokenGet(oauth_token); 

    sLinkedInCommentsURL = "http://api.linkedin.com/v1/posts/7434836657526032700/comments"; 

    string response = _oauth.APIWebRequest("GET", sLinkedInCommentsURL, null); 
    lblMessage.Text = response; 
} 

나는 오류 다음 나타납니다 당신이 표시되는 오류가 발생하는 이유는 그래서

Server Error in '/dreamplaybook' Application. 

The remote server returned an error: (403) Forbidden. 

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Net.WebException: The remote server returned an error: (403) Forbidden. 

Source Error: 


Line 433:   finally 
Line 434:   { 
Line 435:    webRequest.GetResponse().GetResponseStream().Close(); 
Line 436:    responseReader.Close(); 
Line 437:    responseReader = null; 

Source File: c:\inetpub\calendias\dreamplaybook\App_Code\oAuthLinkedIn.cs Line: 435 

Stack Trace: 


[WebException: The remote server returned an error: (403) Forbidden.] 
    System.Net.HttpWebRequest.GetResponse() +6538872 
    oAuthLinkedIn.WebResponseGet(HttpWebRequest webRequest) in c:\inetpub\calendias\dreamplaybook\App_Code\oAuthLinkedIn.cs:435 
    oAuthLinkedIn.APIWebRequest(String method, String url, String postData) in c:\inetpub\calendias\dreamplaybook\App_Code\oAuthLinkedIn.cs:357 
    adposter.Page_Load(Object sender, EventArgs e) in c:\inetpub\calendias\dreamplaybook\adposter.aspx.cs:282 
    System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51 
    System.Web.UI.Control.OnLoad(EventArgs e) +92 
    System.Web.UI.Control.LoadRecursive() +54 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +772 

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34237 

답변

1

자료, 게시 ID와 같은 분야하지 않습니다. API를 사용하면 발행물에서 의견을 얻을 수 없습니다.

+0

감사합니다. 나는 계속 지켜 볼거야! –

관련 문제