QGIS插件使用追踪方法
我有一个 QGIS3 python 插件,我想跟踪其用户的使用情况。是否可以在 header 中添加 http 请求?我该怎么做呢?
I have a QGIS3 python plugin that I would like to track its users' usage. Is it possible to add a http request to the headers? How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最大的障碍是需要安装http请求包(如
requests
)。对于 QGIS 的特定安装,这很容易在 osgeo4w shell 中完成,但不能在插件中完成(据我所知)。但是,没有什么可以阻止您将
requests.post(path,headers,data)
插入插件脚本文件中。The biggest obstacle is that an http request package should be installed (like
requests
). This easy to do in the osgeo4w shell for a particular installation of QGIS, but it can't be done from within a plugin (as far as I can tell).However, there's nothing to stop you from inserting
requests.post(path,headers,data)
into your plugin script files.