我正在使用此代码在Google Analytics上获取黑莓信息
private static String getUserAgent()
{
String userAgent = "Blackberry" + DeviceInfo.getDeviceName() + "/" +
getOsVersion() + " Profile/" + System.getProperty(
"microedition.profiles" ) + " Configuration/" + System.getProperty(
"microedition.configuration" ) + " VendorID/" +
Branding.getVendorId();
return userAgent;
}
然后在这里使用它:
conn.setRequestProperty("User-Agent", userAgent);
问题在于它不像手机那样识别终端,但它在浏览器中有所不同。
浏览器:
Navegador Visitas % Visitas
1. Blackberry8900 36 100,00%
任何想法谷歌分析是否有一些参数知道这是一部手机?或者如果我使用的是badformated useraggent。
感谢您的回答。