警告:今天是我学习Node.js的第一天,所以请耐心等待。
我获得了一个API,允许我获取PDF文件,通过网络渲染服务运行它,以便能够在任何浏览器上看到它。问题是,我对Node.js不了解
以下是基本API:
var http = require('http'),
root_url='example.com',
fileUrl = encodeURIComponent('example.com/myfile.pdf');
http.get(cloud_root_url + 'api/score/view?fileUrl=' + fileUrl, function (err, res) {
console.log('Got response: ' + res.statusCode);
// Embed response in a view to client.
}
如果脚本运行正常,我会收到如下响应:
{
"result": {
"session": {
"id": "alphaNumericCode",
"viewerUrl": "example.com/api/viewer/alphaNumericCode"
}
},
"status": 200,
"success": true
}
我想弄清楚的是我如何通过查询字符串或其他东西插入任何fileURL,然后我如何让这个API导出带有吐出的相应viewerURL的iFrame。