来自Millennial Media Ad服务器的GET请求

时间:2014-04-28 17:32:54

标签: blackberry get advertisement-server

您好我尝试向千禧媒体发出GET请求,要求我的黑莓java应用中显示广告,但我似乎无法让它发挥作用。这就是我所拥有的

HttpConnection conn = null;             
InputStream in = null;             
StringBuffer buff = new StringBuffer();             
String result = ""; 

String url ="http://ads.mydas.mobi/getAdapid=157899&auid=ddd25abbb993f79454b12827c803fbafab2ad89b&ua";                          try {                 
conn = (HttpConnection) new ConnectionFactory().getConnection(url).getConnection(); conn.setRequestMethod(HttpConnection.GET);                 
conn.setRequestProperty("User-Agent",              
"Profile/MIDP-1.0 Confirguration/CLDC-1.0");                 
if (conn.getResponseCode() == HttpConnection.HTTP_OK) {                     
in = conn.openInputStream();                     
// parser.parse(in, handler);                  
buff.append(IOUtilities.streamToBytes(in));                     
result = buff.toString();                 
} else {                     
result = "Error in connection" + conn.getResponseCode();
((SettingWaitScreen)screen).update(result);              
} catch (Exception ex) {                 
ex.printStackTrace();             
} finally {                 
try {                     
if (in != null) {                         
in.close();                     
}                     
conn.close();                 
} catch (IOException e) {                     
e.printStackTrace();                 
}             
}

我不知道这是否是正确的方法,我们非常感谢您对此广告请求的任何帮助。这是我从网站http://docs.millennialmedia.com/S2S/ad-request.html

获得的

1 个答案:

答案 0 :(得分:0)

嘿,你使用的网址不正确。

请查看以下网址 http://ads.mp.mydas.mobi/getAd?apid=157899&auid=ddd25abbb993f79454b12827c803fbafab2ad89b

以上网址也在浏览器中使用。