Reputation: 400
(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?
Upvotes: 3
Views: 345
Reputation: 24979
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.
Upvotes: 2