3

The operation could not be completed. (SFHFKeychainUtilsErrorDomain error -2000.)(trouble with password) SFHFKeychainUtilsErrorDomain used by MKStorekit.

1 Answers1

1

After much toiling I think I solved this one. It has to do with the way MKStoreKit stores data in the keychain. In your MKStoreKitConfigs.plist, make sure you've added the keys "Name" and "Cost" for your consumables:

enter image description here

I had initially left the dictionaries empty and I was getting that error. Once I added the Name and Cost key-value pairs, everything worked as expected.

Arman
  • 856
  • 2
  • 10
  • 19
  • This was the solution here as well! Thank you very much. However you advise to add "Name" and "Cost" while the screenshot shows "Name" and "Count". The "Count" value is the correct one. – Andrei Herford Sep 18 '13 at 10:00