bchavez / Coinbase

:moneybag: A .NET/C# implementation of the Coinbase API.
https://developers.coinbase.com/api/v2
MIT License
170 stars 92 forks source link

Coinbase : Issue with upgrade to latest version 0.3.11. #18

Closed MaruthiPrasadA closed 9 years ago

MaruthiPrasadA commented 9 years ago

As suggested we tried to pull the coinbase latest using Nuget for version 0.3.11, we are experiencing the below issue while creating payment button programmaticlly for Live like below : var api = new CoinbaseApi(CoinbaseApiKey,CoinbaseApiSecret,useSandbox:false,proxy:null);
var paymenRequest = new ButtonRequest { Name = "Sample Text", Currency = currencySign, Price = total, Type = ButtonType.BuyNow, Custom = inventID, Description = "Sample Desc", Style = ButtonStyle.CustomLarge, CallbackUrl = CallbackURL, CancelUrl = CancelURL, InfoUrl = InfoURL, SuccessUrl = SuccessURL, }; var buttonResponse = api.RegisterButton(paymenRequest); coinbase latest upgrade issue

bchavez commented 9 years ago

@MaruthiPrasadA

I've pushed some changes via Nuget; could you please check if the latest version v0.3.12 resolves your issue? Thanks.

MaruthiPrasadA commented 9 years ago

@bchavez

Thanks for your efforts. I pulled the latest v0.3.12 and tested with my app, it is working good.