2013-07-04 22 views
0

我張貼到LinkedIn小組討論端點爲什麼LinkedIn REST api小組討論帖子沒有返回完整響應?

http://api.linkedin.com/v1/groups/{group-id}/posts 

和我得到來自不同服務器的不同的反應。

從生產服務器

有一次,我回來了響應包含JSON格式從開發服務器

{ 
"url":"http:\\api.linkedin.com\v1\groups\{group-id}\posts", 
"http_code":201, 
"download_content_length":0, 
"size_download":0, 
"size_upload":363 
} 

一旦響應

的只是一部分,我回來的響應包含完整響應

JSON格式

{ 
"http_code":201, 
"url":"http:\\api.linkedin.com\v1\groups\{group-id}\posts", 
"header_size":536, 
"request_size":871, 
"filetime":-1, 
"ssl_verify_result":0, 
"redirect_count":0, 
"total_time":1.513264, 
"namelookup_time":0.213188, 
"connect_time":0.449284, 
"pretransfer_time":0.449346, 
"size_upload":421, 
"size_download":0, 
"speed_download":0, 
"speed_upload":278, 
"download_content_length":0, 
"upload_content_length":421, 
"starttransfer_time":1.51323, 
"redirect_time":0, 
"headers_recv":"HTTP/1.1 201 Created Server: Apache-Coyote/1.1 x-li-request-id: PJRKH2SBF1 Location: http://\\api.linkedin.com\v1\posts\{post-id} X-LI-R2-W-IC-2: frm.scp=%7B%22refTime%22%3A1372946874%2C%22A.5070905%22%3A360%7D X-LI-R2-W-IC-2: com.linkedin.container.drc=1%7EAPRG%2C1 X-LI-R2-W-IC-2: com.linkedin.container.rpc.cluster.serviceInfo=PROD-ELA4%2Fappreg%2F0.0.2000-RC1.20722%2Fela4-app0213%2Fi001 X-LI-R2-W-IC-2: com.linkedin.container.dsc=1 Content-Length: 0 Vary: Accept-Encoding Date: Thu, 04 Jul 2013 14:07:53 GMT " 
} 

回答

1

您需要指定LinkedIn爲請求返回哪些信息。

https:\ api.linkedin.com \ v1 \ groups {group-id}/posts :(創建時間戳,標題,摘要,網站羣發佈url,創建者:(first-name,last-名稱,圖片的URL,標題),喜歡,附件:(圖像URL,內容域,內容的URL,標題,摘要)評論:(創建者:(一姓,名,圖片的URL)創建時間戳,文本),關係到查看器)

不要忘記使用https而不是http。

相關問題