return FALSE; $r = well_tag_thread__update(array('id' => $id), $update); return $r; } function well_tag_thread_find($tagid, $page, $pagesize) { $arr = well_tag_thread__find(array('tagid' => $tagid), array('id' => -1), $page, $pagesize); return $arr; } function well_tag_thread_find_by_tid($tid, $page, $pagesize) { $arr = well_tag_thread__find(array('tid' => $tid), array(), $page, $pagesize); return $arr; } ?>how to debug "resource not found" issue when uploading documents to azure storage - Stack Overflow
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

how to debug "resource not found" issue when uploading documents to azure storage - Stack Overflow

programmeradmin1浏览0评论

I am running this workbook - .ipynb

I am stuck at the "Upload Files" step. When I run the cell, I get 404 Resource Not Found error, from the following step.

response = requests.post(
                url=url,
                files=files,
                params={"storage_name": storage_name, "overwrite": overwrite},
                headers=headers,
            )

I am using the following values

file_directory = "testdata" //this is local directory where test files are
storage_name = "wikiarticles" //this is container name in the blob
index_name = "graphragindex" //this is name I have given. I assume that an index will be created with this name
endpoint = "; //this is apim resource. It's the value of gateway endpoint as mentioned in the notebook

发布评论

评论列表(0)

  1. 暂无评论