1、这个接口
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=
我可以正常拿到token
2、但是这个接口
https://api.weixin.qq.com/cgi-bin/user/get?access_token=
拿数据,会报错
{
"errcode": 48001,
"errmsg": "api unauthorized rid: 123456"
}
3、请问是否一定需要公众号、服务号授权?我2023年测试的时候,还是能够用的。

不是所有公众号都能调。token 只要 appid/secret 正确就能拿;但 user/get 这类接口要看账号权限,订阅号不能用,未认证或未开通权限的服务号也会报 48001
你确定token是服务号的?