urlread get method problems when passing header arguments

2 次查看(过去 30 天)
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 个评论
José Crespo Barrios
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

请先登录,再进行评论。

回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by