我是LinkedIn API的新手。
有什么方法可以使用v1 API检索r_basicprofile
?
我正在使用Python,我的GET网址是:
'https://api.linkedin.com/v1/people/~?url=%s&oauth2_access_token=%s&format=json' %(v_member_url,v_access_token)
无论我在v_member_url
中输入什么内容,我都只会得到我的个人资料。
答案 0 :(得分:0)
$scope.onChangedCityDropDown= function(i){
console.log(i)
}
<select class="form-control" ng-model="a"
ng-options="item.city as item.city for item in vals"
ng-change="onChangedCityDropDown(item)">
<option value="" disabled>choose an option</option>
</select>
尝试
https://api.linkedin.com/v1/people/%s&oauth2_access_token=%s&format=json' %(v_member_url,v_access_token)
符号代表您自己。
应该用personID代替
~