I am trying to play a Vimeo video on my swift app on a subview using a subclass of AVPlayer. Even though there is no need for credentials or logging into Vimeo to see this particular video, when I try to set up the video I get the following error:
CredStore - performQuery - Error copying matching creds. Error=-25300, query={
class = inet;
"m_Limit" = "m_LimitAll";
"r_Attributes" = 1;
sync = syna;
}
My code is pretty straightforward after setting the player on a UIView:
player.set(AVURLAsset(url: URL(string: videoURLString)!))
player.play()
Any ideas on what might be going wrong, or how to simply play a Vimeo video on a subview in my VC?
Thanks.