3
  1. Uncaught TypeError: Cannot use 'in' operator to search for 'debug' in undefined
  2. a.balanced.initbalanced.js:1https://js.balancedpayments.com/v1/balanced.js
  3. (anonymous function)

    <script type="text/javascript" src=" https://js.balancedpayments.com/v1/balanced.js"></script>
    <script>
    //balanced.init('/v1/marketplaces/TEST-MP798-194-2357');
    //balanced.init('/marketplaces/TEST-MP798-194-2357');
    balanced.init('TEST-MP798-194-2357');
    </script>
    

Getting the same error on each of the different calls. Is my URI incorrect?

mjallday
  • 9,796
  • 9
  • 51
  • 71
Ethan
  • 400
  • 4
  • 10

1 Answers1

2

This is a documentation bug on our end. There should be a second optional parameter, but right now it's required.

Like you have figured out,

balanced.init('YOUR-MARKETPLACE-URI', {}); // works
balanced.init('YOUR-MARKETPLACE-URI', {'debug': true}); // turns on debugging

Hope this helps.

Mahmoud Abdelkader
  • 23,011
  • 5
  • 41
  • 54