Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
vrchat-client-updated
Advanced tools
Unofficial VRChat API Client for Node.js. Updated by Kakious with updated API information and axios version
Unofficial VRChat API Client for Node.js
npm i vrchat-client
# OR
yarn add vrchat-client
import vrc from 'vrchat-client'
// or
const vrc = require('vrchat-client')
// all methods return Promise
let api = await vrc.login(username, password)
api.user.getUserInfo()
api.user.updateUserInfo({
email: "example@example.com",
birthday: "",
status: "active",
statusDescription: "comment"
})
api.user.getFriends({
offset: 1,
n: 1,
offline: false,
})
api.user.getFriendStatus('user id')
api.user.sendFriendRequest('user id')
api.user.unfriend('user id')
api.user.acceptFriend('notification id')
api.user.getById('user id')
api.user.getByName('user name')
// All Users
api.user.search.all({
search: '',
n: 1,
offset: 1,
developerType: 'none'
})
api.favorite.add('type', 'object id')
// ?
api.favorite.add.avatar('avatar id')
api.favorite.add.world('world id')
api.favorite.add.user('user id')
api.favorite.getInfo('favorite id')
api.favorite.list('type')
api.favortite.delete('favorite id')
api.world.getById('world id')
api.world.search.all({
options: any
})
api.world.delete('world id')
api.world.getMetadata('world id')
api.world.getInstanceWithTags('world id', 'instance id')
api.avatar.getById('avatar id')
api.avatar.choose('avatar id')
api.avatar.search({
options: any,
})
api.moderation.send('user id')
// Block user
api.moderation.block('user id')
// Unblock user
api.moderation.unblock('user id')
// Mute user
api.moderation.mute('user id')
// Unmute
api.moderation.unmute('user id')
api.moderation.delete('moderation id')
api.moderation.clear('user id')
api.moderation.getAgainstSelf()
api.moderation.getSentlist()
api.notification.send.friendRequest('user id')
api.notification.send.invite('user id', 'world id', 'message')
api.notification.markAsRead('notification id')
api.notification.delete('notification id')
api.notification.getAll({
type: 'type',
send: true,
after: 'date',
})
FAQs
Unofficial VRChat API Client for Node.js. Updated by Kakious with updated API information and axios version
We found that vrchat-client-updated demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.