0
我正在使用linkedin-j在java中驗證管理linkedin API。我在獲取用戶信息,電子郵件地址等方面沒有任何問題。即使我沒有張貼份額問題:無法發佈網絡更新
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postShare(title, text, title, title, VisibilityType.ANYONE);
我看到它立即在我的LinkedIn的時間表,但是當我嘗試發佈的網絡更新我沒有得到任何錯誤回報,但更新不時間軸中的顯示
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postNetworkUpdate(update);
有沒有人有這個問題?
在此先感謝!
我找到了這個答案: 「postNetworkStatus()被列入開發應用程序的白名單(請參閱LinkedIn?開發人員文檔),您需要添加所有測試帳戶作爲應用程序的開發人員,否則此方法會悄然失敗」我的用戶已經是開發人員 – hiamex