I am implementing BitPay API using C# SDK.
I am doing this according to csharp-bitpay-client and BitPay C# client library configuration but unfortunately I am not achieving this.
Every time I get stuck at:
BitPay bitpay = new BitPay();
I also tried:
ECKey key = KeyUtils.createEcKey();
this.bitpay = new BitPay(key);
But key generates successfully but again I stuck here:
this.bitpay = new BitPay(key);
Every time I am getting this message from BitPay server:
{"error":"Unauthorized sin"}
Any one have idea about it?
And I am not seeing my public key on dashboard. Any one know why public key is not showing.
Thanks