function TopicOptions(host, path, method, serverKey) {
this.topicOptions = {
host,
path,
method,
json: true,
headers: { }
};
this.topicOptions.headers = {
'Host': topicOptions.host,
'Authorization': 'key=' + serverKey,
'Content-Type': 'application/json',
'Accept': 'application/json'
};
return topicOptions;
}
module.exports = TopicOptions; Back to Directory