【发布时间】:2018-07-26 08:32:21
【问题描述】:
如果我在 mac 上动态加载视频播放器的 url,它可以正常工作,但是在 iphone 上构建和播放时我收到此错误,而不是在 android 上它可以工作:
CredStore - performQuery - Error copying matching creds. Error=-25300, query={
class = inet;
"m_Limit" = "m_LimitAll";
"r_Attributes" = 1;
sync = syna;
}
这是函数:
public void WI_PlayVideo(string target, string video)
{
MyVideo = GameObject.Find(target).GetComponent<VideoPlayer>();
if (MyVideo == null)
{
Debug.Log("player non trovato");
}
else
{
//here there's the file name that is public whithout credential request
MyVideo.url = "https://myspace.ams3.digitaloceanspaces.com/" + video;
MyVideo.Play();
}
有人知道 ios 向我询问什么凭据吗?
添加评论
【问题讨论】:
标签: c# unity3d video video-streaming