Hello,
Im trying to get the contents of the Confluence page to another site using the JSON-RPC renderContent method. The below code return me most of the contents but some javascript functions are missing and CSS so some Confluence plugins are not working (Expand macro,Info macro).
Do you know how to fix this? Or is there another method to load the Confluence javascript and CSS ?
Also we did notice a character "�" getting displayed when the html code has an empty paragraph
' <p> </p>' . Do you also know why this occurs ?
Is this an encoding issue ? I checked my Confluence configuration and the Encoding s set to UTF-8.
Below is the code to call "renderContent" method
$.ajax({ type: "POST", url: "http://samplehost.net/confluence/rpc/json-rpc/confluenceservice-v2/renderContent", data: ' [ "AIPAS", 32538632, "" ] ', contentType: "application/json; charset=utf-8", dataType: "json", success: function(data){ $("#mydiv").html(data); }, failure: function(errMsg){ alert(errMsg); } });
I think you might be better off just doing a regular fetch of the page -- use the actual page URL:
jQuery.ajax({ url : "/display/${space}/${mypage}?decorator=printable", success : function(result){ do something with the result; } });
I have the same problem. I can not solve it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.