임 OneDrive API를 사용하여 파일을 업로드하려고합니다. 인증은 예상대로 작동합니다. 인증은 files.readwrite.all
및 offline_access
범위를 사용합니다. 사용자의 파일을받는 것과 같은 다른 호출도 예상대로 작동합니다. 파일을 업로드하려고 할 때 401 권한이없는 오류가 발생합니다.OneDrive 파일 업로드가 예상치 않게 401
먼저 내가 업로드 세션을 만들고 아래의 코드를 사용하여 업로드 URL을 얻을 : 예상대로이 작동
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("https://graph.microsoft.com");
client.DefaultRequestHeaders.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessToken.ToString());
HttpResponseMessage response;
response = await client.PostAsync("/v1.0/drive/root:" + path + "/" + file.FileName + ":/createUploadSession", null);
string uploadUrl = (string)JObject.Parse(await response.Content.ReadAsStringAsync())["uploadUrl"];
}
합니다. 응답 상태 코드는 200이고 업로드 URL을받습니다. 다음으로 업로드 URL을 사용하여 파일을 업로드하고 싶습니다. 내용에는 업로드하려는 첫 번째 청크의 바이트가 포함됩니다. Content-Length 및 Content-Range도 올바르게 설정됩니다. put 요청을 사용하여 업로드 URL에 동일한 클라이언트를 사용하여 콘텐츠를 보냅니다.
ByteArrayContent content = new ByteArrayContent(chunk);
content.Headers.Add("Content-Length", (contentRangeEnd - contentRangeBegin).ToString());
content.Headers.Add("Content-Range", "bytes " + contentRangeBegin + "-" + (contentRangeEnd - 1) + "/" + allBytes.Length);
response = await client.PutAsync(uploadUrl, content);
put 요청의 결과는 401 오류입니다. 파일이 예상대로 작동하는 것과 같은 다른 호출이 있기 때문에 액세스 토큰이 유효 한 것 같습니다.
401 오류를 어떻게 해결합니까?
정확합니다. [documentation] (https://developer.microsoft.com/ko-kr/graph/docs/api-reference/v1.0/api/item_createuploadsession#upload-bytes-to-the-upload-session) : 포함 PUT 호출을 발행 할 때 Authorization 헤더가 HTTP 401 Unauthoized 응답을 초래할 수 있습니다. Authoization 헤더와 무기명 토큰은 첫 번째 단계에서 POST를 실행할 때만 보내야합니다. PUT을 발행 할 때 포함되지 않아야합니다. –