You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i set the api credentials, and call, for istance, GetWalletsAsync()
the entire application hangs and get stuck,
i noticed it worked fine just the first time.
apparently it get stucks on this line : using (var stream = request.GetRequestStream().Result)
on BitfinexClient.cs , line 852
i checked my api key on the website and it seems to be working fine.
the code is the same you provided:
BitfinexClient.SetDefaultOptions(new BitfinexClientOptions(){
ApiCredentials = new ApiCredentials("APIKEY", "APISECRET")
});
using(var client = new BitfinexClient())
{
var walletResult = client.GetWallets();
if(!walletResult.Success)
Console.WriteLine("Error: " + walletResult.Error);
else
{
foreach(var wallet in walletResult.Data)
Console.WriteLine(wallet.Currency + ": " + wallet.Balance);
}
}
please help me, what i have to check?
The text was updated successfully, but these errors were encountered:
i'm doing some tests with my application,
when i set the api credentials, and call, for istance, GetWalletsAsync()
the entire application hangs and get stuck,
i noticed it worked fine just the first time.
apparently it get stucks on this line :
using (var stream = request.GetRequestStream().Result)
on BitfinexClient.cs , line 852
i checked my api key on the website and it seems to be working fine.
the code is the same you provided:
please help me, what i have to check?
The text was updated successfully, but these errors were encountered: