如何阻止您的WhatsApp朋友知道您已阅读他们的消息

本文介绍如何在WhatsApp中关闭阅读回执和最后在线时间显示,以保护个人隐私。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

whatsappreceipt

WhatsApp is a really popular, Facebook-owned messaging service, although most of its users are outside the US. While it’s encrypted end-to-end to protect you from spying, WhatsApp shares read receipts by default—so people can see if you’ve read their message—as well as sharing the last time you were online.

WhatsApp是一种非常受欢迎的,Facebook拥有的消息服务,尽管其大多数用户在美国境外。 虽然它是端到端加密的,以防止您受到监视,但是WhatsApp默认情况下会共享已读回执-人们可以查看您是否已阅读邮件-以及共享上一次在线时间。

If you’re concerned about your privacy, or just want to be able to respond to messages in your own time without offending people, you should turn both of these features off.

如果您担心自己的隐私,或者只是想在自己的时间内回复邮件而不会冒犯他人,则应该关闭这两个功能。

I’m using iOS screenshots as examples but the process is the same on Android. Here’s how to do it.

我以iOS屏幕快照为例,但在Android上的过程相同。 这是操作方法。

Open WhatsApp and head to Settings > Account > Privacy.

打开WhatsApp,然后转到设置>帐户>隐私。

IMG_9064
IMG_9065

To keep people from knowing you read their message, tap the Read Receipts switch to turn it off. This means you won’t be able to see whether or not they’ve read yours either, though.

为了使人们不知道您阅读了他们的消息,请点按“阅读回执”开关以将其关闭。 但是,这意味着您将无法看到他们是否也阅读过您的。

IMG_9068
IMG_9066

To stop WhatsApp showing your last online time, tap Last Seen and then select Nobody. You also won’t be able to see other people’s last online time if you have it turned off.

要停止WhatsApp显示您的上次上网时间,请点按“上次看到”,然后选择“没人”。 如果您将其关闭,您也将无法看到其他人的上次上网时间。

IMG_9067

WhatsApp is a great messaging app and, although it is secure, by default, it shares more information than many people like with their contacts. I personally leave read receipts and my last online time switched off; I recommend you do too.

WhatsApp是一款出色的消息传递应用程序,尽管它是安全的,但默认情况下,它比许多人喜欢的联系人共享更多信息。 我个人留下已阅读的收据,并且上次上网时间关闭了; 我也建议你也这样做。

翻译自: https://www.howtogeek.com/282092/how-to-stop-your-whatsapp-friends-from-knowing-youve-read-their-messages/

### 使用 WhatsApp API 进行应用开发 #### 准备工作 为了成功利用WhatsApp API进行应用开发,开发者需先理解所选API的具体特性及其适用场景。对于企业级解决方案而言,通常会选择使用WhatsApp Business API或WhatsApp Cloud API[^2]。 #### 开发环境搭建 确保拥有稳定的网络环境至关重要,因为这直接影响到API请求的成功率和响应时间。建议参考官方文档来配置必要的代理服务或其他中间件以优化网络性能[^1]。 #### 应用程序创建 无论是选择哪种类型的API接口,在正式接入前都需要完成一系列初始化设置: - 注册成为开发者并获取相应权限; - 创建项目并通过认证流程获得访问令牌; - 配置Webhook用于接收来自WhatsApp消息通知; ```json { "webhooks": { "url": "https://yourdomain.com/webhook", "verify_token": "YOUR_VERIFY_TOKEN" } } ``` #### 发送消息示例 下面是一个简单的Python脚本例子,展示了如何向指定联系人发送文本消息: ```python import requests def send_message(phone_number, message_text): url = 'https://graph.facebook.com/v13.0/WHATSAPP_API_PHONE_NUMBER_ID/messages' headers = {'Authorization': f'Bearer YOUR_ACCESS_TOKEN'} payload = { "messaging_product": "whatsapp", "recipient_type": "individual", "to": phone_number, "type": "text", "text": {"body": message_text} } response = requests.post(url=url, json=payload, headers=headers) if __name__ == '__main__': send_message('123456789', 'Hello from your app!') ``` 此代码片段假设读者已经获得了有效的`ACCESS_TOKEN`以及正确的`PHONE_NUMBER_ID`参数值,并将其替换为实际使用的凭证信息。 #### 数据安全与隐私保护 在整个过程中始终重视数据的安全性和用户的隐私权。遵循GDPR等相关法律法规的要求,妥善保管用户个人信息,避免泄露风险。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值