MPMoviePlayerController 使用代理身份验证从 url 播放视频
我开发了一个可以通过http 播放视频(.mp4) 的应用程序。根据许多教程,他们建议我使用 MPMoviePlayerController。在我的工作场所,我必须进行代理服务器身份验证才能访问互联网,但我找不到任何示例代码来使用 MPMoviePlayerController 进行代理身份验证,因此我无法通过 http 播放任何视频。
你们有什么建议吗?
谢谢, 问候
I develop an application that can play video(.mp4) via http. According to many tutorials ,they suggest me to use MPMoviePlayerController. In my workplace, I have to do a proxy server authentication to access the internet but I can't find any example code to do a proxy authen with MPMoviePlayerController so I can't play any video via http.
Do you guys have any suggestions?
Thanks,
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获得解决方案
从苹果文档NSURLCredential *credential = [[NSURLCredential alloc]
initWithUser: @"我的用户名"
密码:@“我的密码”
持久化:NSURLCredentialPersistenceForSession];
Got a solution from Apple Document
NSURLCredential *credential = [[NSURLCredential alloc]
initWithUser: @"myusername"
password: @"mypassword"
persistence: NSURLCredentialPersistenceForSession];