标记从我的应用程序访问网站的用户

发布于 2024-08-20 19:42:32 字数 410 浏览 5 评论 0原文

我的应用程序有一些菜单按钮,可将用户发送到我的网站。

我想在网站中区分所有常规用户中有多少用户来自我的应用程序。

我的应用程序是用 C# 编写的,目前我这样引导用户:

string url = "http://mysite/somepage";
System.Diagnostics.Process.Start(url);

在服务器端,我使用 Piwik 进行我的网络瘫痪了。

有什么建议吗?


更新

一个好的解决方案是向 URL 添加一些参数。但我想知道是否可以使用引用字段,以简化操作。

My application has some menu buttons that sends the users to my website.

I want to differentiate in the website how many users came from my app, out of all the regular users.

My app is written in C#, and currently I direct users like this:

string url = "http://mysite/somepage";
System.Diagnostics.Process.Start(url);

On the server side, I use Piwik for my web paralytics.

Any suggestions?


Update

One good solution will be to add some parameter to the URL. Yet I was wondering if it's possible to play with the referrer field, for the sake paralytics simplicity.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

家住魔仙堡 2024-08-27 19:42:32

在 url 中添加一些内容,可能是在查询字符串中,以标识用户源自您的应用程序,例如:

string url = "http://mysite/somepage?source=myApplication";
System.Diagnostics.Process.Start(url);

您可以/也可以通过向 url 添加更多内容来使用它来跟踪正在使用的应用程序的版本,例如?source=myApplication&version=1.0.3 =)

Add something to the url, probably in the querystring that identifies that the user has originated from your application, like:

string url = "http://mysite/somepage?source=myApplication";
System.Diagnostics.Process.Start(url);

You can/could also use this to track the versions of your app that are in use by adding more to the url, for example ?source=myApplication&version=1.0.3 =)

别再吹冷风 2024-08-27 19:42:32

只需向来自您的应用程序的 URL 添加一个参数,其他用户将不会有该参数:

string url = "http://mysite/somepage?fromApp=v1";

在您的网站上,您可以选择该参数来区分用户。之后立即进行重定向,这样他们就不会使用此 URL 为页面添加书签。

Just add a parameter to the URL coming from your app, other users will not have that:

string url = "http://mysite/somepage?fromApp=v1";

On your website, you can pick that up to differentiate users. Do a redirect immediately after, so they will not bookmark the page with this URL.

妞丶爷亲个 2024-08-27 19:42:32

难道您不能只向您的应用程序正在使用的 URL 添加一些参数并使用它来过滤来自您的应用程序的用户吗?

Can't you just add some parameter to the URL your application is using and use that to filter users coming from your app?

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