在 Vitamio Android 上设置 headers
Set headers on Vitamio Android
我正在尝试播放流式 HLS (m3u8),它需要一些参数,例如 User-Agent 和 Referer,但不起作用。
我的代码:
...
Map<String,String> options = new HashMap<>();
options.put("Referer","Xxxxxxxx");
options.put("User-Agent","Yyyyyyyy");
videoView.setVideoURI(streamURI,options);
...
响应:
D/Vitamio[5.0.1][Player]: [http @ 0x9627e500] HTTP error 403 Forbidden
E/Vitamio[5.0.1][Player]: avformat_open_input: Server returned 403 Forbidden (access denied) : -858797304
我也试过这样使用它:
options.put("headers","Referer:Xxxxxxxx\r\n");
options.put("headers","User-Agent:Yyyyyyyy\r\n");
结果是一样的...
代码有错误吗?格式?也许是订单?
谢谢。
final HashMap<String, String> options;
options = new HashMap<>();
options.put("headers", "User-Agent: myUserAgent\r\n");
videoView.setVideoURI(Uri.parse("http://www.example.com/playlist.m3u8), options);
这是正确的方法。但是解析用户代理不同于标准方法。您使用的是哪个服务器?
我正在尝试播放流式 HLS (m3u8),它需要一些参数,例如 User-Agent 和 Referer,但不起作用。
我的代码:
...
Map<String,String> options = new HashMap<>();
options.put("Referer","Xxxxxxxx");
options.put("User-Agent","Yyyyyyyy");
videoView.setVideoURI(streamURI,options);
...
响应:
D/Vitamio[5.0.1][Player]: [http @ 0x9627e500] HTTP error 403 Forbidden
E/Vitamio[5.0.1][Player]: avformat_open_input: Server returned 403 Forbidden (access denied) : -858797304
我也试过这样使用它:
options.put("headers","Referer:Xxxxxxxx\r\n");
options.put("headers","User-Agent:Yyyyyyyy\r\n");
结果是一样的...
代码有错误吗?格式?也许是订单?
谢谢。
final HashMap<String, String> options;
options = new HashMap<>();
options.put("headers", "User-Agent: myUserAgent\r\n");
videoView.setVideoURI(Uri.parse("http://www.example.com/playlist.m3u8), options);
这是正确的方法。但是解析用户代理不同于标准方法。您使用的是哪个服务器?