If i dynamicaly load an url for a videoplayer on mac it works correctly, but when build and play on iphone i receive this error, instead on android it works:
CredStore - performQuery - Error copying matching creds. Error=-25300, query={
class = inet;
"m_Limit" = "m_LimitAll";
"r_Attributes" = 1;
sync = syna;
}
This is the function:
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();
}
Anyone have idea of what credential ios asking to me?
Add comment