Jump to content
McKay Development

Can't Leave Comment


Guest Ino

Recommended Posts

Hello. When i Tried to leave comment i get error 

Error: The settings on this account do not allow you to add comments.

My code 

let SteamUser = require("steam-user"),
    SteamCommunity = require("steamcommunity"),
    SteamID = require('steamid'),
    CONFIG = require('./config.js'),
    SteamTotp = require("steam-totp")

let client = new SteamUser();
let community = new SteamCommunity();
let banshee = '765611979625767xxx';
let steamID = new SteamID(banshee);

community.getSteamUser(steamID, function(ERR, USER) {
        if (ERR) {
            console.log("## An error occurred while getting user profile: " + ERR);
        } else {
            USER.comment('CONFIG.COMMENTAFTERTRADE', (ERR) => {
                if (ERR) {
                    console.log("## An error occurred while commenting on user profile: " + ERR);
                } else {
                    console.log('comment was posted')
                }
            });
        }
})

Link to comment
Share on other sites

The settings on that account do not allow you to add comments.

Okay , and i have 1 more question.

How i can logout from my first acc , and login from my seccond acc ? 

when i tried it i have error

"Already logged on, cannot log on again

Link to comment
Share on other sites

  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...