标记从我的应用程序访问网站的用户
我的应用程序有一些菜单按钮,可将用户发送到我的网站。
我想在网站中区分所有常规用户中有多少用户来自我的应用程序。
我的应用程序是用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 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:
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 =)
只需向来自您的应用程序的 URL 添加一个参数,其他用户将不会有该参数:
在您的网站上,您可以选择该参数来区分用户。之后立即进行重定向,这样他们就不会使用此 URL 为页面添加书签。
Just add a parameter to the URL coming from your app, other users will not have that:
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.
难道您不能只向您的应用程序正在使用的 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?