You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2019. It is now read-only.
I'm getting the error in the title when I try to use the getWall function. I'm logged in to an account that is able to view the wall of the group I'm querying, but even if I change the group id to a group that lets anyone view the wall (like groupID 8), it still gives me the same error message.
Is this a bug caused by some ROBLOX update or am I doing something wrong?
constexpress=require('express');constrbx=require('roblox-js');varapp=express();rbx.login('jayvolr','NotRealPasswordButIsRealInMyCode').then(()=>{// I see this output in the console so login is workingconsole.log('logged in as jayvolr');});app.get('/',(req,res)=>{// Even if I change up getWall's arguments I always get the same error messagerbx.getWall(85654,1).then((wall)=>{res.send(JSON.stringify(wall));});}).listen(3000,()=>{console.log('Server listening on port 3000...');});