QGIS插件使用追踪方法

发布于 2025-01-12 07:04:55 字数 73 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铁轨上的流浪者 2025-01-19 07:04:56

最大的障碍是需要安装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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文