nobloxmmc.js
Version:
A Node.js wrapper for ROBLOX. (original from sentanos)
40 lines (35 loc) • 997 B
JavaScript
const http = require('../util/http.js').func
const getGeneralToken = require('../util/getGeneralToken.js').func
exports.required = ['conversationId', 'endMessageId']
exports.optional = ['jar']
const nextFunction = (jar, token, conversationId, endMessageId) => {
return http({
url: '//chat.roblox.com/v2/mark-as-read',
options: {
method: 'POST',
jar: jar,
headers: {
'X-CSRF-TOKEN': token
},
json: {
conversationId: conversationId,
endMessageId: endMessageId
},
resolveWithFullResponse: true
}
}).then((res) => {
if (res.statusCode === 200) {
if (!res.body.resultType === 'Success') {
throw new Error(res.body.statusMessage)
}
} else {
throw new Error('Mark as read failed')
}
})
}
exports.func = (args) => {
const jar = args.jar
return getGeneralToken({ jar: jar }).then((xcsrf) => {
return nextFunction(jar, xcsrf, args.conversationId, args.endMessageId)
})
}