1

アプリのみの承認フローで OneDrive にフォルダーまたはファイルを作成しようとしています。要求と応答の詳細は次のとおりです。

POST https://graph.microsoft.com/v1.0/drive/root/children  
HTTP/1.1
Content-Type: application/json
Accept: application/json
AUTHORIZATION: Bearer <AccesToken>
Host: graph.microsoft.com
Content-Length: 39

Request Body
{"name": "Hello.docx", "file": {} }

Response:
HTTP/1.1 401 Unauthorized
Content-Type: application/json

{
  "error": 
  {
    "code": "unauthenticated",
    "message": "The caller is not authenticated.",
    "innerError": 
      {
      "request-id": "xxxxx-b23d-482c-xxxx-xxxxxxxx",
      "date": "2016-03-11T12:49:06"
      }
  }
}

アクセス許可に関するものである場合は、これが機能するように設定するアプリケーションのアクセス許可を教えてください。アプリのみの承認フローでも機能しますか?

どんな助けでも大歓迎です。

4

1 に答える 1