Create pdf
When I put runtime mashup link in create pdf() service I am getting empty pdf as output.Please check the code below.
var params = {
FileRepository: 'FileRepo_Krishnakomal' /* THINGNAME */,
Rotated90Deg: false /* BOOLEAN */,
AppKey: "31ffa8ab-e5d4-416e-960c-2bc40f0c36ba" /* STRING */,
ServerAddress: "http://amrvwp000002634.amer.pfizer.com:8080/Thingworx/Runtime/index.html#mashup=ALLAhusBottomRows_IMU&forceClose=true&__fromNextGen=928e024c-e016-4122-8b8d-d80512da1f40" /* STRING */,
OutputFileName: "MashupReport.PDF" /* STRING */,
Resolution: "1680*1050" /* STRING */
};
// result: STRING
var result = Resources["PDFExport"].CreatePDF(params);
But if use server address as "https://www.w3schools.com/" ,I am able to get desired data in output pdf file.Could you please let me know where I was wrong.

