urlread get method problems when passing header arguments

2 vues (au cours des 30 derniers jours)
José Crespo Barrios
José Crespo Barrios le 1 Sep 2014
Hello, this problem arises from using an API (source: https://bittrex.com/home/api)
The point is when authenticating with Post method I haven't found problems. However Bittrex asks to do it so via Get method.
Based on instructions and python source code here is my own code (applied for 'getopenorders' method-parameter):
if true
% code
url_base = 'https://bittrex.com/api/v1.1/market/getopenorders';
body = [url_base,'?apikey=',apikey,'&nonce=',nonce];
sign = hmac(secret_key, body, 'SHA-512');
json = urlread( body, 'Get', {'apisign', sign} )
end
urlread successfully return a string, but contains an API error message:
{"success":false,"message":"APISIGN_NOT_PROVIDED","result":null}
With other API interfaces based on 'Post' method the arguments were successfully passed, but not in this case.
If there is someone strongly experienced who dares to suggest solutions I will be deeply thankful!
Regards José
  1 commentaire
José Crespo Barrios
José Crespo Barrios le 5 Sep 2014
After diving few days in the topic, it seems to be that MATLAB is uncapable of passing header-parameters via get method. Please I kindly ask to correct me if I were wrong on this point. Thanks

Connectez-vous pour commenter.

Réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by