基本上我正在寻找与Instagram相当的产品:
whatsapp://send?text=myspecifiedurlgoeshere.com
关于此,我找不到任何在线内容。使用Facebook,Facebook Messenger,Twitter,whatsapp和电子邮件,我没有问题
答案 0 :(得分:0)
据我所知,没有针对直接消息的万无一失的 Instagram API,更不用说基于 url 参数的支持了。而且我想应该不会有,因为已经很长时间了。
但是,您可以尝试使用 instagram-private-api 通过以下方式发送直接消息:
const userId = await ig.user.getIdByUsername('username');
const thread = ig.entity.directThread([userId.toString()]);
await thread.broadcastText('Message from node');
(来源:https://github.com/dilame/instagram-private-api/issues/792)
对于其他基于软件的集成 - https://maytapi.medium.com/instagram-dm-api-documentation-start-to-use-instagram-dm-api-with-4-s-84d147d7d361