5

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.

Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
  • Possible duplicate of [CredStore Perform Query error](https://stackoverflow.com/questions/46099940/credstore-perform-query-error) – Brett Feb 01 '18 at 10:30
  • Getting this warning from an AVAsset when loading it async, from *my* https server. – Jonny Aug 22 '18 at 08:20

1 Answers1

0

The technical answer is at this duplicate question - CredStore Perform Query error I have the same problem with Google Drive - both on 'share to anyone with the link' and also 'public'. It seems '''public''' services still do like to ask for credentials because the provider benefits in some way. We need to manage that even though we are using public services.

mattharg
  • 61
  • 6