A user agent is a piece of software (a software agent) that acts on behalf of a user. The term is often used to refer to browsers, and other software that sends network requests. In the HTTP protocol, a user agent identifies itself to the server using a user-agent string. The user-agent string is a ...
0
votes
0answers
5 views
Uniqueness of User Agent Strings across Mobile Device Vendors
I'd like to know just what parts of a user agent string are unique across mobile device vendors (specifically tablets).
For example, let's say I have the following two user agent strings:
...
0
votes
0answers
4 views
How to add additional info to a user agent
I would like to add more information to a user agent, without affecting the functionality of the original UA.
Our Android and iOS apps have webviews and uiwebviews, these should be able to display ...
0
votes
0answers
13 views
Alternative to Browscap
I've been using Browscap in one of my opensource projects (a URL shortener if anyone's interested) for quite a while now and after updating it to the latest version I realized that it hasn't changed ...
1
vote
1answer
11 views
expand werkzeug useragent class
I want to expand werkzeug UserAgent class with one more browser. How can I do it without modifying the source code of werkzeug library? I'm new in python so I have small idea about mixins, ...
0
votes
1answer
28 views
Detect Mac OS version with PHP
I have created a script to detect OS version of windows with the help of the internet, but Now I am stuck at detecting Mac OS versions. I have no Mac OS to test the code and to find out what to use ...
0
votes
4answers
45 views
How do I write a regex to search for items within UA-Parser?
I am using UA-Parser to create a table of devices for analytics...I have a csv of user-agent strings from our server. I am using the stock UA-Parser for Node package (ua-parser-js.)
However, I am ...
0
votes
0answers
27 views
HTMLUnit: change User Agent string
I'm using HtmlUnit in my Java project in order to test a web page that has got Javascript inside. My code clicks a button that calls a Javascript function, wich redirect the user to another page (like ...
0
votes
1answer
29 views
RubyMine - NoMethodError: Undefined method 'get' for nil:nilClass - Webdriver UserAgent
I am new to RubyMine and trying to debug an project that I did not write myself.
The error when I ran the Project.feature and it stopped at the first line 'Given I go to this Website'.
...
1
vote
0answers
27 views
Getting the real Useragent String from a Proxy-based Browser
I noticed something that seems a little odd when using a Nokia Asha 311.
When I use navigator.userAgent from the device's DOM, I get something very similar to the following:
mozilla/5.0 (x11; ...
0
votes
2answers
50 views
Update User Agent in Firefox
I would like to change my User Agent while browsing and display the changes on a website.
I already got a website that prints the UserAgent, simply using JS document.writeln(navigator.userAgent).
...
2
votes
1answer
51 views
Parallel requests in Mojolicious application
I have perl application which, for example, parallel searching in google:
use Mojo::UserAgent;
use Mojo::IOLoop;
my $ua = Mojo::UserAgent->new();
my $delay = Mojo::IOLoop->delay(sub { say ...
1
vote
1answer
25 views
“If” tag in <VIRTUAL_HOST> of httpd.conf file checking HTTP_UESR_AGENT of apache 2.4 not working as expected
I found out from documentation that from Apache 2.3 onwards we can use
tag in hattpd.conf file.
But when tried following in my httpd.conf file, I am not able to get required redirection.
part of ...
-1
votes
0answers
18 views
does paywall uses user agent? [closed]
I have a vpn connection, I tried to access the website without VPN, it still blocked me. I am just curious how does paywall work- based on useragent? If it is, ip adresses are different with and ...
0
votes
0answers
11 views
web payments standard paypal login page disappears with certain user agents
I run a e-commerce site and I noticed a number of abandoned carts last night (may 9, 2013) more than usual.
Identifying their user agent and using the firefox extension User Agent Switcher
from ...
0
votes
1answer
46 views
OS Detection in javascript for all the devices and cross-browser
I am working on web analytics, I have to find out the os of the visitor specific with following conditions
1.Cross-browser compatibility.
2.For all devices(tablet,iphone,mobile,deskstop,etc).
...
1
vote
1answer
62 views
Detecting User Agent to redirect on specific Jsp in struts 2
As title suggests I want to redirect the requests of mobile phones to specific page.
another way I expect is only a variable that contains information about UserAgent so That U can use that Variable ...
0
votes
0answers
18 views
What is the name of the Google PageSpeed User Agent?
This page indicates that it uses a custom user agent but it does not mention the name. I would like to be able to run some logic if the user agent is from PageSpeed. What is the name of the Google ...
0
votes
1answer
43 views
Setting User-Agent correctly for a command line app?
I built a nodejs command line utility to make posting gists from the command line both easy and secure. It works well enough, but I was wondering what the right way to set the User-Agent for such a ...
0
votes
0answers
19 views
Broken User-agent detection code…why? How now?
I used to use the following code (see below) to detect user agents in the index file and then send the user to the correct directory folder based on their device/browser. This script code doesn't seem ...
0
votes
1answer
17 views
Matching simple Array values using php
$useragent = $_SERVER['HTTP_USER_AGENT'];
$device_array = array("iPhone" , "iPad", "Android");
What I'd like to do is write a simple if statement that looked at to see if any of $device_array ...
0
votes
4answers
54 views
PHP Notice: Undefined index: HTTP_USER_AGENT in line 2
I have added a 3 line code at the top of the index page to eliminate the bad request which occurs in imac devices. The code is given below:
<?php
if (preg_match ("/CaptiveNetworkSupport/", ...
0
votes
1answer
65 views
Define User Agent on InAppBrowser from Cordova
I use InAppBrowser plugin from Cordova and I would like to open a webpage from my app (Android, iOS). However, the website should know if the user has entered by the mobile browser or through my app. ...
0
votes
0answers
27 views
When I try to get results from goolge Geocoder that runs on User Client I get gibberish
I run google maps Geocoder (*jQuery v1.8.2) on User Agent.
var geocoder = new google.maps.Geocoder();
geocoder.geocode( {
'address': address
}, function(res, ...
0
votes
1answer
81 views
What User-Agent to give my WebApi Requests?
I am using an api and I noticed that when I use RestSharp and do a call from my asp.net web api project my request fails.
I turned on fiddler and for whatever reason the api I am requesting thinks I ...
0
votes
0answers
15 views
in android, how to customize the user-agent string from apache-httpclient? [duplicate]
by default, the user-agent sent from android to webserver is the string :
Apache-HttpClient/UNAVAILABLE (java 1.4)
is it possible to customize it from the mobile ? in a texte file, somewhere ?
...
0
votes
1answer
254 views
Request desktop site option on mobile devices
Many Mobile devices like my android phone have a 'request desktop site' option. I'm in the process of building mobile websites and want to make that native feature work.
What is expected on our end ...
0
votes
1answer
46 views
agent based programming using native programming language
so basically I am interested in building an agent-based simulation of a battleground.
There are a lot of frameworks for agent-based models such as JADE, etc.. but due to certain constraint, I can ...
0
votes
0answers
43 views
Detecting user_agent for Chrome iOS in rails
When I user Rails request.env["HTTP_USER_AGENT"] for Chrome on iOS on my iPhone 4s (iOS 6.1.3) it responds with:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.23.11 (KHTML, like ...
0
votes
1answer
41 views
Securing PHP sessions via hash which incorporates user-agent no longer works for IE10
I have a session management class in PHP that regenerates a security hash every time the session is loaded in order to prevent session hijacking. Recently I've come across complaints that users with ...
0
votes
0answers
46 views
How to find unique visitors using cookies, ip address referer and user agent?
I am trying to figure out an algorithm, query or method that allows me to predict when a user is not a unique visitor.
Figuring out wether the person is not unique can happen after the fact.
I have ...
0
votes
1answer
88 views
Set the user agent on android application
I am developping a radio stream application for android through Eclipse, I would like to change the user-agent for my app so when someone is playing the shoutcast stream, I can see remotely on the ...
0
votes
2answers
94 views
how to get browser's remote ip by javascript?
I want to obtain the remote client ip by javascript, not querying any external ip resource pools. how could i get the remote ip address, just like the way i get appName by navigator.appName
also ...
-2
votes
1answer
39 views
Newbie to Javascript: iOS, Android, or Desktop Javascript Optimization
I have recently been getting into Javascript. Not a lot, but I'd like optimization and tips on if there'd be a better way to handle this script:
<script type="text/javascript">
function ...
0
votes
1answer
122 views
Codeigniter user_agent
This is my first time developing a responsive website, and I attempted using the CodeIgniter user_agent class.
I notice that there's
is_mobile()
and
is_browser()
However, the picture I have in ...
0
votes
2answers
121 views
I don't want my application to open mobile website
The issue that I am having is, when I open the required website from my app which has got a WebView in it, the website redirects it to mobile-site. I don't want this to happen.
I want to view the ...
0
votes
1answer
124 views
How to reset all default styles of the HTML5 button element
Scenario
I use the <button> element which appeares just as plain text with an "+" on right end.
On click a div element expands and reveals some information. I think the button element is ...
0
votes
1answer
34 views
How to read useragent details
This is my user agent
Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
I know I am using chrome, so I understand it is from chrome ...
0
votes
1answer
23 views
Mod rewrite multiple rewrite condtions
I'm trying this following code to only match if the url contains certain wordpress pages AND either the user agent is blank or matches like (curl/perl/php etc...). However it is doing so even if ...
7
votes
1answer
148 views
How to set default HTTP User Agent from a Java Web Start application?
We define in our Java application a custom HTTP User-Agent containing the following:
Software version
User language
Platform information (operating system family + release name)
Java version
We ...
0
votes
1answer
84 views
WebGL texImage2d: SECURITY_ERR using rasterizeHTML.js
I'm using rasterizeHTML.js to create a canvas representing DOM elements of the webpage (such as a screenshot of the page), and then I'm passing it to texImage2d, in order to use this canvas as a ...
0
votes
0answers
47 views
Blocking Mac / Gecko-20100101 By User Agent?
I have a particularly annoying Mac user who is spamming me. This is the user-agent
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20100101
Firefox/9.0"
Would you suggest to block ...
1
vote
3answers
78 views
.htaccess ERRORDOCUMENT not working
Hope someone can help with this.
I have the following code which checks the user agent of visitors and throws an error
# ANYWHERE IN UA
RewriteCond %{HTTP_USER_AGENT} ^.* ...
0
votes
0answers
28 views
Is it safe to remove square brackets contents from User Agent string (because of Facebook iOS App)?
We have an iPad optimized website which we advertise on Facebook. Our users were shown the mobile site instead of the actual site when they came to site with the Facebook App.
"Mozilla/5.0 (iPad; ...
0
votes
0answers
87 views
Awesomium, change useragent and referrer
I just started to use awesomium.
I wanted to understand how to change user-agent and referrer.
i need for example to initialize 5 istance o awesomium webcontrol and for each of them i need different ...
0
votes
1answer
21 views
Fastest way to detect user agent
I would like to redirect visitors to my domain with a certain user-agent to a subdomain. What would be the fastest way to do that? .htaccess / mod_rewrite?
Many thanks!
0
votes
2answers
93 views
User agent stylesheet override - Paragraph text
I have some paragraph text, as below, however in chrome it keeps adding a 1em margin to the left hand side. Here is my code:
.bold { font-family: Verdana, Arial, Helvetica, sans-serif; color:#333337; ...
0
votes
1answer
91 views
How does PrimeFaces detect the browser? [closed]
How does PrimeFaces handle browser detection? Does it rely on jQuery to do that? Does it use the User Agent String?
How is prime-faces handling the IE user-agent updates as discussed here.
0
votes
2answers
103 views
Feature detection instead of user-agent sniffing on TV
My team is considering developing for TV, and thought of designing a tailored "10-foot UI" to present our content differently on TV-sets.
The only way I see it happening at this point is by sniffing ...
2
votes
2answers
102 views
How can I set User-Agent and Referer headers when using ClientWebSocket in .net 4.5?
The obvious answer of using ClientWebSocket.SetHeader throws an exception because it's a protected header:
System.ArgumentException occurred
Message=The 'User-Agent' header must be modified using ...
0
votes
1answer
559 views
Confirm this user-agent string Chrome 25+ on more expensive Android devices?
I have a budget tablet, because I only use it for site testing, and I thought it was a good idea to check whether the sites also render correctly on budget tablets. It runs on Android OS 4.1.1. The ...







