zmyrenee Member

Comments

  • @guitarhero23 I was researching this for a couple of days without any answers. After discussion with you, I did find the answer! See reference link: https://2.python-requests.org/en/master/user/quickstart/ In this link, the author says: Using the JSON the parameter in the request will change the Content-Type in the header…
  • @guitarhero23 Actually, not, I am not having octet-stream in my header. I am writing a python code which like this: url_query = 'https://api.domo.com/v1/datasets/query/execute/' + str(data_id) r_query = requests.post(url_query, headers={'Accept': 'application/json', 'Authorization': 'Bearer {}'.format(access_token)},…
  • Hi, I am actually trying to do the same thing. However, I encountered an error code 'Content type \'application/octet-stream\' not supported'. Do you know what happened and how to resolve it?