我正在尝试从 Android 应用发送 Linkedin 邀请。(我拥有所有权限,包括Send invitation
or Message(w_message)
)。我可以成功发送消息,但我无法发送邀请。
我正在准备CommunicationsApiClient
命名对象com_cliClient
并尝试通过 Person 或 Id 发送邀请。我在调用以下方法时没有收到任何错误,但没有发送邀请。
一些代码:
com_cliClient.sendInviteToPerson(p2, "hello", "Invitation...");
com_cliClient.sendInviteById(id, "hello","Invitation",authHeader);
我正在使用linkedin-j-android.jar
Android 应用程序。