You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
After migrate from Connections 4.5 to Connections 5.5, we have an issue adding HTML (link to a document) to a comunity via API (Social Business Toolkit SDK).
We have a workflow that when you create a document in Websphere Portal it is published (via SBT) in a community in Connections:
After migrate from Connections 4.5 to Connections 5.5, we have an issue adding HTML (link to a document) to a comunity via API (Social Business Toolkit SDK).
We have a workflow that when you create a document in Websphere Portal it is published (via SBT) in a community in Connections:
… statusMsg = " - <a href=\""+pathContent+ "\">" + title+ "</a>"; postPayload.put("content", statusMsg); ActivityStreamService actSvc = new ActivityStreamService(ep); String entryId = actSvc.postMicroblogEntry("urn:lsid:lconn.ibm.com:communities.community:" + idCommunity,"@all","",postPayload); …
In Connections 4.5, the link is escaped in order to show correctly:
statusMsg = " - <a href=\"https://" + path + "\">" + title+ "</a>";
But in Connection 5.5, it shows the characters codes:
How should content (a link) be created in Connections 5.5 using the SBT API as we do in Connections 4.5?
Thanks in advance.
Regard.
The text was updated successfully, but these errors were encountered: