Skip to content
This repository was archived by the owner on Jan 2, 2019. It is now read-only.
This repository was archived by the owner on Jan 2, 2019. It is now read-only.

Error: You do not have permission to view the wall #88

@jayvolr

Description

@jayvolr

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?

const express = require('express');
const rbx = require('roblox-js');

var app = express();

rbx.login('jayvolr', 'NotRealPasswordButIsRealInMyCode').then(() => {
  // I see this output in the console so login is working
 console.log('logged in as jayvolr');
});

app
   .get('/', (req, res) => {
      // Even if I change up getWall's arguments I always get the same error message
      rbx.getWall(85654, 1).then((wall) => {
         res.send(JSON.stringify(wall));
      });
   })
   .listen(3000, () => {
      console.log('Server listening on port 3000...');
   });

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions