Android MediaPlayer URL's with Cookie

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-22 06:58:49

问题


I have an android application that plays music from a site, however to authenticate to the stream, you need to send a cookie first I.E:

http://example.com/site/content?id=SOMEID = mp3 formatted stream

If you access the url without a cookie, you'll get a Server 500 error. If you have a cookie, then you'll get the stream.

For the life of me, I can't figure out how to make the mediaplayer play a URL while sending a cookie.

I can play any url that doesn't require a cookie, however.


回答1:


As far as I can tell you can't. Almost everything MediaPlayer does is done in native code, including opening any connections, so there is no way to access the stream it is using AFAICT.




回答2:


One possible workaround is to create a web server in your Android app, have it authenticate and download your MP3 and having your MediaPlayer call setDataSource with your local server's address (something like http://127.0.0.1:8000/mymp3.mp3). You can have the playback occur while your web server class is still downloading so ideally your users would notice a difference.



来源:https://stackoverflow.com/questions/731603/android-mediaplayer-urls-with-cookie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!