LinkedIn向连接发送消息

LinkedIn send message to a connection

本文关键字:消息 接发 连接 LinkedIn      更新时间:2023-09-26

我正在尝试使用LinkedIn api 向用户的连接发送消息,但我发现极度缺乏示例和缺乏文档使其很难诊断。

我不想在用户注册时请求w_messages权限,所以我使用 javascript API 获取具有此权限的新访问令牌,并传递给服务器仅用于 SendMessage 调用。

在客户端上:

 IN.init({
    onLoad: "onLoadApi",
    api_key: viewBag.clientSettings.LinkedInClientId,
    authorize: false,
    scope: "r_basicprofile r_network w_messages"
 });
 function onLoadApi() {
     if (!IN.User.isAuthorized()) {
        IN.User.authorize(sendMessage);
     }
     function sendMessage() {
          var w_message_accesstoken = IN.ENV.auth.oauth_token;
          $http.post("/MyApi/SendMessage/vBejds6Vh8", w_message_accesstoken);
     }
 }

在服务器上:

string jsonData = "{'"subject'":'"test subject'",'"body'":'"testbody'",'"recipients'":{'"values'":[{'"person'":{'"_path'":'"/people/vBejds6Vh8'"}}]}}"

var response= "https://api.linkedin.com/v1/people/vBejds6Vh8/mailbox"
                     .SetQueryParam("oauth2_access_token", accessTokenPassedFromClient)
                     .PostJsonAsync(jsonData);

结果:

{"Request to https://api.linkedin.com/v1/people/vBejds6Vh8/mailbox?oauth2_access_token=xxxxx failed with status code 401 (Unauthorized)."}

您将希望将此调用作为 POST 调用进行。您只能代表您拥有具有"w_messages"成员权限的访问令牌的成员发送消息。

POST 的示例请求应为:发布 https://api.linkedin.com/v1/people/~/mailbox?oauth2_access_token=***

<?xml version='1.0' encoding='UTF-8'?>
<mailbox-item>
    <recipients>
        <recipient>
            <person path='/people/~' />
        </recipient>
        <recipient>
            <person path="/people/{id}" />
        </recipient>
    </recipients>
    <subject>Congratulations on your new position.</subject>
    <body>You're certainly the best person for the job!</body>
</mailbox-item>