要从"Profile API 获得连接计数, 您可以直接询问 API :
http://api.linkin.com/v1/people/id=nbqwYraDfd:(num-connections,num-connections-caped)
这将返回( 取决于连接计数 ) :
<?xml version="1.0" encoding="UTF-8"?>
<person>
<num-connections>500</num-connections>
<num-connections-capped>true</num-connections-capped>
</person>
请注意查看用户可用的字段有限制 - 请检查 < a href=> https:// developmenter. linkin. com/documents/ profile-fields" rel=“ nofollow” >Profile Fields 文档的详细内容。 例如, 无法获取连接连接 - 如果您在上面的例子中 nbqwYraDd
代表当前查看用户, 您可以使用 :
http://api.linkin.com/v1/people/id=nbqwYraDfd:(连接)
将返回:
<?xml version="1.0" encoding="UTF-8"?>
<person>
<connections total="XXX" count="YYY" start="0">
<person>
...
</person>
</connections>
</person>
然后通过穿行 XML (语言受抚养人) 检查总计值 。
但是,如果 nbqwYraDfd
是当前用户的连接, 或者没有连接, 您将得到 403 个响应 :
<?xml version="1.0" encoding="UTF-8"?>
<error>
<status>403</status>
<timestamp>1337954306491</timestamp>
<request-id>25P44ZN249</request-id>
<error-code>0</error-code>
<message>Access to other member s connections denied</message>
</error>