Exports a forum.
Signature:
Disqus#exports.exportForum(options[, cb])
Usage:
// Node-style
disqus.exports.exportForum({
forum: '',
// defaults shown
format: 'xml'
}, function (err, result) {...})
// Promise-style
disqus.exports.exportForum({
forum: '',
api_secret: 'asdfghkj', // can be set globally
access_token: '12345678', // can be set globally
// defaults shown
format: 'xml'
})
.then(function (result) {...})
.catch(function (err) {...})
.error(function (err) {...});
Up one level
Exports API
See the disqus-node Exports CLI.
See the Exports API on Disqus.com.