拨打https://api.linkedin.com/v1/people时遇到问题 使用C#。以下代码之前运行良好。今天突然我注意到它没有用。
这是我的代码:
string fields = "id,first-name,last- name,site-public-profile-request,email-address"; //connections
string url = "https://api.linkedin.com/v1/people/~:(" + fields + ")?format=json";
Dictionary<string, string> headers = new Dictionary<string, string>();
headers.Add("Authorization", "Bearer " + accessToken);
headers.Add("x-li-format", "json");
WebRequests webReq = new WebRequests();
string response = webReq.GetRequest(url, headers);
profile = JsonConvert.DeserializeObject<LinkedInUserProfile>(response);
这是我的实时网站。
答案 0 :(得分:0)
我发现了问题 V1现在已经退休,所以我需要转到v2 引用链接:https://docs.microsoft.com/en-us/linkedin/shared/integrations/people/profile-api?context=linkedin/consumer/context