blockViewFeed
Chặn người dùng xem bài đăng của mình
api.blockViewFeed(userId[, isBlockFeed])
Parameters
userId
stringisBlockFeed
boolean?mặc định
true
Return
Promise<BlockViewFeedResponse>
Types
export type BlockViewFeedResponse = "";Examples
const userId = "0000000000000000001";
api
.blockViewFeed(userId)
.then(console.log).catch(console.error);Last updated