pydomo"status":403

Successfully retrieving data with domo.ds_get.
But why is an error outputted and how can I work around it?

An error occurred while converting domo schema to pandas dtypes.

Letting pandas attempt to read the data. Error=Error retrieving DataSet: {"status":403,"statusReason":"Forbidden","message":"Access is denied","toe":""}



Executed code:
# \"datasources/\"と\"/details\"の間の部分を抽出# urlを表示したいコードに変更してください。match = re.search(r'datasources/(.*?)/details', url7)if match:    datasource_id = match.group(1)    df_01 = domo.ds_get(datasource_id)    print(df_01.shape)    print(df_01)else:    print("無効なURL形式です。データソースIDを抽出できませんでした。")

Answers

  • Verify to make sure the user you're authenticated as has access to that specific dataset (your datasource_id value).

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**