Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to create subfolders or files under App_Data when using API calls #914

Closed
abraunegg opened this issue Sep 15, 2018 · 19 comments
Closed
Assignees

Comments

@abraunegg
Copy link

abraunegg commented Sep 15, 2018

When attempting to create an entire path using the API, the following path fails:

./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles

Additionally any folder being created under "App_Data" using the API fails. Full log below:

OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles
* Found bundle for host graph.microsoft.com: 0xb716c0 [can pipeline]
* Re-using existing connection! (#7) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.178) port 443 (#7)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
Host: graph.microsoft.com
User-Agent: Phobos-std.net.curl/2.081 (libcurl/7.59.0)
Accept: */*
Authorization: bearer <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 6409f8c0-9780-4121-8b23-f95792121d2f
< client-request-id: 6409f8c0-9780-4121-8b23-f95792121d2f
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"001","Host":"AGSFE_IN_3","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 982.5017
< Strict-Transport-Security: max-age=31536000
< Date: Sat, 15 Sep 2018 10:13:51 GMT
< 
* Connection #7 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('andre%40basel.co.nz')\/drive\/root\/$entity","cTag":"adDpGRTIyNUUwNURGMUE1NUI3ITI5NDUyMS42MzY3MjU4NDk4NTIyNzAwMDA","eTag":"aRkUyMjVFMDVERjFBNTVCNyEyOTQ1MjEuMA","fileSystemInfo":{"createdDateTime":"2018-09-15T05:09:45.226Z","lastModifiedDateTime":"2018-09-15T05:09:45.226Z"},"folder":{"childCount":0,"view":{"sortBy":"name","sortOrder":"ascending","viewType":"thumbnails"}},"id":"FE225E05DF1A55B7!294521","name":"App_Data","parentReference":{"driveId":"fe225e05df1a55b7","driveType":"personal","id":"FE225E05DF1A55B7!294516","name":"GuessNumber","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites\/GuessNumber"}}
* Found bundle for host graph.microsoft.com: 0xb716c0 [can pipeline]
* Re-using existing connection! (#7) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.178) port 443 (#7)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
Host: graph.microsoft.com
User-Agent: Phobos-std.net.curl/2.081 (libcurl/7.59.0)
Accept: */*
Authorization: bearer <redacted>

< HTTP/1.1 404 Not Found
< Content-Type: text/html
< Server: Microsoft-IIS/10.0
< Strict-Transport-Security: max-age=31536000
< Date: Sat, 15 Sep 2018 10:13:51 GMT
< Connection: close
< Content-Length: 1245
< 
* Closing connection 7
std.json.JSONException@std/json.d(1392): Unexpected character '<'. (Line 1:1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>404 - File or directory not found.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>404 - File or directory not found.</h2>
  <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
 </fieldset></div>
</div>
</body>
</html>

However, if I then log on to OneDrive (onedrive.live.com) I can browse to that path & create any folder as required - no error is generated.

However even if any folder is created under "App_Data" any file upload / file creation fails with the same error.

Additionally, this restriction or limitation is not detailed here:

https://support.microsoft.com/en-au/help/3125202/restrictions-and-limitations-when-you-sync-files-and-folders

@JeremyKelley
Copy link
Contributor

Hi @abraunegg can you provide us a little more information? In particular can you share the URL you're Posting to and the parameters you're passing?

Thanks!

@abraunegg
Copy link
Author

@JeremyKelley
Doesnt the log file / output above provide all the details your seeking?

It shows the GET request with URL & options, and shows the failure response.

@abraunegg abraunegg changed the title Unable to create subfolders under App_Data when using API calls Unable to create subfolders or files under App_Data when using API calls Sep 17, 2018
@JeremyKelley
Copy link
Contributor

I think that's where we're getting confused, GET won't create a folder, you need to do a POST. Take a look here, https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_post_children, and see if that matches what you're doing to create the folder.

Thanks!

@abraunegg
Copy link
Author

I think that's where we're getting confused, GET won't create a folder, you need to do a POST. Take a look here, https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_post_children, and see if that matches what you're doing to create the folder.

Thanks!

I agree - however it is the GET of the non existent folder (checking to see if it exists before create) that is preventing the create from occuring.

In the log file above, this:

> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1

Should return a 404 with a valid JSON, but does not - it fails with 'garbage', thus anything under the App_Data folder cannot be checked / created correctly using the API.

Below is an entire sequence, starting from a blank OneDrive local & remote folder structure where you can see the checks for the folder, with the PUT for create (when a valid JSON is returned), but the checks for anything after 'App_Data' fail as it returns a garbage 404 response:

[alex@centos7full OneDrive]$ ls -la ./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles/
total 4
drwxrwxr-x. 2 alex alex 22 Sep 19 06:20 .
drwxrwxr-x. 3 alex alex 29 Sep 19 06:20 ..
-rw-rw-r--. 1 alex alex  5 Sep 19 06:20 file.txt
[alex@centos7full OneDrive]$ ls -la
total 4
drwxrwxr-x.  3 alex alex   23 Sep 19 06:20 .
drwx------. 20 alex alex 4096 Sep 19 06:20 ..
drwxrwxr-x.  3 alex alex   25 Sep 19 06:20 Documents
[alex@centos7full OneDrive]$ 


Loading config ...
Using Config Dir: /home/alex/.config/onedrive
No config file found, using defaults
Initializing the OneDrive API ...
Opening the item database ...
All operations will be performed in: /home/alex/OneDrive
Initializing the Synchronization Engine ...
* About to connect() to login.microsoftonline.com port 443 (#1)
*   Trying 23.101.222.252...
* Connected to login.microsoftonline.com (23.101.222.252) port 443 (#1)
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
* Server certificate:
*       subject: CN=stamp2.login.microsoftonline.com
*       start date: Dec 28 20:05:06 2017 GMT
*       expire date: Dec 28 20:05:06 2019 GMT
*       common name: stamp2.login.microsoftonline.com
*       issuer: CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US
> POST /common/oauth2/v2.0/token HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: login.microsoftonline.com
Accept: */*
Content-Length: 569
Content-Type: application/x-www-form-urlencoded

< HTTP/1.1 200 OK
< Cache-Control: no-cache, no-store
< Pragma: no-cache
< Content-Type: application/json; charset=utf-8
< Expires: -1
< Strict-Transport-Security: max-age=31536000; includeSubDomains
< X-Content-Type-Options: nosniff
< x-ms-request-id: 2b8fbb23-d1d0-4491-957f-2dac7d070200
< P3P: CP="DSP CUR OTPi IND OTRi ONL FIN"
< Set-Cookie: x-ms-gateway-slice=020; path=/; secure; HttpOnly
< Set-Cookie: stsservicecookie=ests; path=/; secure; HttpOnly
< Date: Tue, 18 Sep 2018 20:23:25 GMT
< Content-Length: 1704
< 
* Connection #1 to host login.microsoftonline.com left intact
* About to connect() to graph.microsoft.com port 443 (#2)
*   Trying 20.190.142.179...
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
* Server certificate:
*       subject: CN=graph.microsoft.com
*       start date: Aug 21 07:06:33 2018 GMT
*       expire date: Aug 21 07:06:33 2020 GMT
*       common name: graph.microsoft.com
*       issuer: CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US
> GET /v1.0/me/drive HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 2b716bb5-4002-44eb-a7b1-04f0942fa308
< client-request-id: 2b716bb5-4002-44eb-a7b1-04f0942fa308
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 846.0028
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:26 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#drives\/$entity","driveType":"personal","id":"63662eeefb6662e1","owner":{"user":{"displayName":"Alex B","id":"63662eeefb6662e1"}},"quota":{"deleted":2541874,"remaining":112742891520,"state":"normal","total":112742891520,"used":0}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 732e19ae-450a-4284-8134-48b4ffbc28c0
< client-request-id: 732e19ae-450a-4284-8134-48b4ffbc28c0
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 826.9894
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:26 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5ODk3MjE0MzAwMDA","createdBy":{"application":{"displayName":"Office.com","id":"4804ec1e"},"user":{"displayName":"Alex B","id":"63662eeefb6662e1"}},"createdDateTime":"2017-05-30T01:22:23.45Z","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","lastModifiedBy":{"application":{"displayName":"OneDrive website","id":"44048800"},"user":{"displayName":"Alex B","id":"63662eeefb6662e1"}},"lastModifiedDateTime":"2018-09-18T20:22:52.143Z","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{},"size":0,"webUrl":"https:\/\/onedrive.live.com\/?cid=63662eeefb6662e1"}
Account Type: personal
Default Drive ID: 63662eeefb6662e1
Default Root ID: 63662EEEFB6662E1!101
Remaining Free Space: 112742891520
Fetching details for OneDrive Root
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: fe64493f-eecc-44ee-ac7a-0b55fa55a7c7
< client-request-id: fe64493f-eecc-44ee-ac7a-0b55fa55a7c7
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 827.8936
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:27 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5ODk3MjE0MzAwMDA","createdBy":{"application":{"displayName":"Office.com","id":"4804ec1e"},"user":{"displayName":"Alex B","id":"63662eeefb6662e1"}},"createdDateTime":"2017-05-30T01:22:23.45Z","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","lastModifiedBy":{"application":{"displayName":"OneDrive website","id":"44048800"},"user":{"displayName":"Alex B","id":"63662eeefb6662e1"}},"lastModifiedDateTime":"2018-09-18T20:22:52.143Z","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{},"size":0,"webUrl":"https:\/\/onedrive.live.com\/?cid=63662eeefb6662e1"}
OneDrive Root exists in the database
Syncing changes from OneDrive ...
Applying changes of Path ID: 63662EEEFB6662E1!101
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 7b2ae097-9f87-468a-baba-10b331e51dd0
< client-request-id: 7b2ae097-9f87-468a-baba-10b331e51dd0
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 258.9372
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:28 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#drives('63662eeefb6662e1')\/items\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5ODk3MjE0MzAwMDA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTg5NzIxNDM7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTg5NzI3NzA7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 3941afa7-8992-4744-84ac-f5588300711e
< client-request-id: 3941afa7-8992-4744-84ac-f5588300711e
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 259.5876
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:28 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#Collection(driveItem)","@odata.deltaLink":"https:\/\/graph.microsoft.com\/v1.0\/drives\/63662eeefb6662e1\/items\/63662EEEFB6662E1!101\/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTg5NzIxNDM7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTkwMDg2NjA7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM","value":[]}
Uploading differences of .
Processing root
The directory has not changed
Uploading new items of .
OneDrive Client requested to create remote path: ./Documents
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 349b42d9-ce17-4e45-a743-5259e8064fd8
< client-request-id: 349b42d9-ce17-4e45-a743-5259e8064fd8
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 243.5466
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:28 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5ODk3MjE0MzAwMDA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: 5248d61e-8c82-4b3d-be21-df24ed8af341
< client-request-id: 5248d61e-8c82-4b3d-be21-df24ed8af341
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 227.6323
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:28 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 32

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!101')/children('63662EEEFB6662E1!10687')
< request-id: 12098529-d7d0-45ca-bccf-31bdcc428626
< client-request-id: 12098529-d7d0-45ca-bccf-31bdcc428626
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 603.642
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:29 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 88440d01-9aa0-4d3e-892f-544ecd356cd1
< client-request-id: 88440d01-9aa0-4d3e-892f-544ecd356cd1
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 864.1299
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:30 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg3LjYzNjcyODk5MDA5NzQwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4Ny4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:29.74Z","lastModifiedDateTime":"2018-09-18T20:23:29.74Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10687","name":"Documents","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!101","path":"\/drive\/root:"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: 1c4fccc4-b919-44fe-928f-c710fdad69c6
< client-request-id: 1c4fccc4-b919-44fe-928f-c710fdad69c6
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 221.2788
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:30 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents/Programming
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!10687/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 34

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!10687')/children('63662EEEFB6662E1!10688')
< request-id: 2fa479d3-17ec-4acd-bd8c-cd9825bbe1c0
< client-request-id: 2fa479d3-17ec-4acd-bd8c-cd9825bbe1c0
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 498.743
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:30 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents/Programming on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming/C#
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 6b0ca694-db69-46e4-a5c0-9a16b7fc1c58
< client-request-id: 6b0ca694-db69-46e4-a5c0-9a16b7fc1c58
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 258.4166
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:31 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg4LjYzNjcyODk5MDExMzMzMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4OC4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:31.333Z","lastModifiedDateTime":"2018-09-18T20:23:31.333Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10688","name":"Programming","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10687","name":"Documents","path":"\/drive\/root:\/Documents"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: c9c21b49-6357-4a60-96c4-4f826112b779
< client-request-id: c9c21b49-6357-4a60-96c4-4f826112b779
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 227.7722
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:31 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents/Programming/C#
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!10688/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 25

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!10688')/children('63662EEEFB6662E1!10689')
< request-id: 0b9b8a61-274b-40db-9c95-00574882082e
< client-request-id: 0b9b8a61-274b-40db-9c95-00574882082e
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 490.4799
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:31 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents/Programming/C# on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 7a019ea4-ba4c-4dfb-b2c8-30b5c1625b2f
< client-request-id: 7a019ea4-ba4c-4dfb-b2c8-30b5c1625b2f
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 249.7015
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:32 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg5LjYzNjcyODk5MDEyMzYzMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4OS4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:32.363Z","lastModifiedDateTime":"2018-09-18T20:23:32.363Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10689","name":"C#","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10688","name":"Programming","path":"\/drive\/root:\/Documents\/Programming"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: db52b4ff-f906-401d-8c29-1cb3193e1e41
< client-request-id: db52b4ff-f906-401d-8c29-1cb3193e1e41
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 224.0419
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:32 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents/Programming/C#/Websites
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!10689/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 31

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!10689')/children('63662EEEFB6662E1!10690')
< request-id: 6663e026-b042-49a3-9dfe-a9f9558232c6
< client-request-id: 6663e026-b042-49a3-9dfe-a9f9558232c6
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 486.2678
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:32 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents/Programming/C#/Websites on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 53f82252-34c1-4483-a727-2335de2147e6
< client-request-id: 53f82252-34c1-4483-a727-2335de2147e6
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 263.394
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:33 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkwLjYzNjcyODk5MDEzMzUwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5MC4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:33.35Z","lastModifiedDateTime":"2018-09-18T20:23:33.35Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10690","name":"Websites","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10689","name":"C#","path":"\/drive\/root:\/Documents\/Programming\/C#"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: 70391f45-feb3-4df1-9b98-07fb7db62c18
< client-request-id: 70391f45-feb3-4df1-9b98-07fb7db62c18
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 222.2193
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:33 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents/Programming/C#/Websites/GuessNumber
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!10690/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 34

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!10690')/children('63662EEEFB6662E1!10691')
< request-id: e5c69f22-06c2-4426-81d1-9e494d144ca7
< client-request-id: e5c69f22-06c2-4426-81d1-9e494d144ca7
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 492.1099
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:33 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents/Programming/C#/Websites/GuessNumber on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber/App_Data
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 40a4c48c-9d4a-4d26-b166-615df07c127e
< client-request-id: 40a4c48c-9d4a-4d26-b166-615df07c127e
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 249.3029
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:33 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkxLjYzNjcyODk5MDE0MzY3MDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5MS4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:34.366Z","lastModifiedDateTime":"2018-09-18T20:23:34.366Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10691","name":"GuessNumber","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10690","name":"Websites","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json
< request-id: 15849dce-4697-4e1a-83ef-25ccafd49274
< client-request-id: 15849dce-4697-4e1a-83ef-25ccafd49274
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< Duration: 941.5183
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:34 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
The requested directory to create was not found on OneDrive - creating remote directory: ./Documents/Programming/C#/Websites/GuessNumber/App_Data
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> POST /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!10691/children HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Content-Type: application/json
Authorization: <redacted>
Content-Length: 31

< HTTP/1.1 201 Created
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< Location: https://s2s-api.onedrive.com/v1.0/drives('63662eeefb6662e1')/items('63662EEEFB6662E1!10691')/children('63662EEEFB6662E1!10692')
< request-id: e9f76b16-54d6-407f-8e78-aa39490cf9fb
< client-request-id: e9f76b16-54d6-407f-8e78-aa39490cf9fb
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 622.6956
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:35 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
Successfully created the remote directory ./Documents/Programming/C#/Websites/GuessNumber/App_Data on OneDrive
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 3ec44542-af44-450a-b1ee-42ab6a2a3c12
< client-request-id: 3ec44542-af44-450a-b1ee-42ab6a2a3c12
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_14","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 245.4578
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:35 GMT
< 
* Connection #2 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkyLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5Mi4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:36.1Z","lastModifiedDateTime":"2018-09-18T20:23:36.1Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10692","name":"App_Data","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10691","name":"GuessNumber","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites\/GuessNumber"}}
* Found bundle for host graph.microsoft.com: 0x1022620
* Re-using existing connection! (#2) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#2)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Content-Type: text/html
< Server: Microsoft-IIS/10.0
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:35 GMT
< Connection: close
< Content-Length: 1245
< 
* Closing connection 2
Unexpected character '<'. (Line 1:1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>404 - File or directory not found.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>404 - File or directory not found.</h2>
  <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
 </fieldset></div>
</div>
</body>
</html>

Syncing changes from OneDrive ...
Applying changes of Path ID: 63662EEEFB6662E1!101
* About to connect() to graph.microsoft.com port 443 (#3)
*   Trying 20.190.142.179...
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#3)
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
* Server certificate:
*       subject: CN=graph.microsoft.com
*       start date: Aug 21 07:06:33 2018 GMT
*       expire date: Aug 21 07:06:33 2020 GMT
*       common name: graph.microsoft.com
*       issuer: CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 0db0381a-55e7-497f-acd6-989e82b148f7
< client-request-id: 0db0381a-55e7-497f-acd6-989e82b148f7
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_10","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 234.8977
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:36 GMT
< 
* Connection #3 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#drives('63662eeefb6662e1')\/items\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5OTAxNjEwMDAwMDA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{}}
* Found bundle for host graph.microsoft.com: 0x100ef10
* Re-using existing connection! (#3) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#3)
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTg5NzIxNDM7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTkwMDg2NjA7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 6cec3d43-23ab-4162-a46d-ec03491d2576
< client-request-id: 6cec3d43-23ab-4162-a46d-ec03491d2576
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_10","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 250.3177
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:36 GMT
< 
* Connection #3 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#Collection(driveItem)","@odata.deltaLink":"https:\/\/graph.microsoft.com\/v1.0\/drives\/63662eeefb6662e1\/items\/63662EEEFB6662E1!101\/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTkwMTYxMDA7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTkwMTcwNzA7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM","value":[{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5OTAxNjEwMDAwMDA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!0","path":"\/drive\/root:"},"root":{}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg3LjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4Ny4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:29.74Z","lastModifiedDateTime":"2018-09-18T20:23:29.74Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10687","name":"Documents","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!101","name":"root:","path":"\/drive\/root:"}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg4LjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4OC4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:31.333Z","lastModifiedDateTime":"2018-09-18T20:23:31.333Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10688","name":"Programming","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10687","name":"Documents","path":"\/drive\/root:\/Documents"}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjg5LjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY4OS4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:32.363Z","lastModifiedDateTime":"2018-09-18T20:23:32.363Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10689","name":"C#","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10688","name":"Programming","path":"\/drive\/root:\/Documents\/Programming"}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkwLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5MC4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:33.35Z","lastModifiedDateTime":"2018-09-18T20:23:33.35Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10690","name":"Websites","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10689","name":"C#","path":"\/drive\/root:\/Documents\/Programming\/C#"}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkxLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5MS4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:34.366Z","lastModifiedDateTime":"2018-09-18T20:23:34.366Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10691","name":"GuessNumber","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10690","name":"Websites","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites"}},{"@odata.type":"#microsoft.graph.driveItem","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkyLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5Mi4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:36.1Z","lastModifiedDateTime":"2018-09-18T20:23:36.1Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10692","name":"App_Data","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10691","name":"GuessNumber","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites\/GuessNumber"}}]}
Uploading differences of .
Processing root
The directory has not changed
Processing Documents
The directory has not changed
Processing Programming
The directory has not changed
Processing C#
The directory has not changed
Processing Websites
The directory has not changed
Processing GuessNumber
The directory has not changed
Processing App_Data
The directory has not changed
Uploading new items of .
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles
* Found bundle for host graph.microsoft.com: 0x100ef10
* Re-using existing connection! (#3) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#3)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: f5ca3575-31d8-4fad-b802-454295bcfa4d
< client-request-id: f5ca3575-31d8-4fad-b802-454295bcfa4d
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_10","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 869.3943
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:37 GMT
< 
* Connection #3 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkyLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5Mi4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:36.1Z","lastModifiedDateTime":"2018-09-18T20:23:36.1Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10692","name":"App_Data","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10691","name":"GuessNumber","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites\/GuessNumber"}}
* Found bundle for host graph.microsoft.com: 0x100ef10
* Re-using existing connection! (#3) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#3)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Content-Type: text/html
< Server: Microsoft-IIS/10.0
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:37 GMT
< Connection: close
< Content-Length: 1245
< 
* Closing connection 3
Unexpected character '<'. (Line 1:1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>404 - File or directory not found.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>404 - File or directory not found.</h2>
  <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
 </fieldset></div>
</div>
</body>
</html>

Syncing changes from OneDrive ...
Applying changes of Path ID: 63662EEEFB6662E1!101
* About to connect() to graph.microsoft.com port 443 (#4)
*   Trying 20.190.142.179...
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#4)
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
* Server certificate:
*       subject: CN=graph.microsoft.com
*       start date: Aug 21 07:06:33 2018 GMT
*       expire date: Aug 21 07:06:33 2020 GMT
*       common name: graph.microsoft.com
*       issuer: CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: de86808e-3a9c-4a1b-92b0-f0f4f538c4b7
< client-request-id: de86808e-3a9c-4a1b-92b0-f0f4f538c4b7
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_1","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 795.0511
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:38 GMT
< 
* Connection #4 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#drives('63662eeefb6662e1')\/items\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwMS42MzY3Mjg5OTAxNjEwMDAwMDA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDEuMQ","fileSystemInfo":{"createdDateTime":"2017-05-30T01:22:23.45Z","lastModifiedDateTime":"2018-04-30T19:27:41.503Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!101","name":"root","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal"},"root":{}}
* Found bundle for host graph.microsoft.com: 0x1009960
* Re-using existing connection! (#4) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#4)
> GET /v1.0/drives/63662eeefb6662e1/items/63662EEEFB6662E1!101/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTkwMTYxMDA7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTkwMTcwNzA7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 87072cbe-f21c-4968-abfa-d07d213e1d5e
< client-request-id: 87072cbe-f21c-4968-abfa-d07d213e1d5e
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_1","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 256.799
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:38 GMT
< 
* Connection #4 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#Collection(driveItem)","@odata.deltaLink":"https:\/\/graph.microsoft.com\/v1.0\/drives\/63662eeefb6662e1\/items\/63662EEEFB6662E1!101\/delta?select=id%2cname%2ceTag%2ccTag%2cdeleted%2cfile%2cfolder%2croot%2cfileSystemInfo%2cremoteItem%2cparentReference&token=aTE09NjM2NzI4OTkwMTYxMDA7SUQ9NjM2NjJFRUVGQjY2NjJFMSExMDE7TFI9NjM2NzI4OTkwMTkwODM7RVA9MTg7U0k9ODk7U0c9MTtTTz0yO1BJPTM","value":[]}
Uploading differences of .
Processing root
The directory has not changed
Processing Documents
The directory has not changed
Processing Programming
The directory has not changed
Processing C#
The directory has not changed
Processing Websites
The directory has not changed
Processing GuessNumber
The directory has not changed
Processing App_Data
The directory has not changed
Uploading new items of .
OneDrive Client requested to create remote path: ./Documents/Programming/C#/Websites/GuessNumber/App_Data/PublishProfiles
* Found bundle for host graph.microsoft.com: 0x1009960
* Re-using existing connection! (#4) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#4)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 200 OK
< Cache-Control: private
< Transfer-Encoding: chunked
< Content-Type: application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
< request-id: 918af30f-2aaa-4f32-b5a6-793a6b5c856c
< client-request-id: 918af30f-2aaa-4f32-b5a6-793a6b5c856c
< x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"SliceC","Ring":"5","ScaleUnit":"002","Host":"AGSFE_IN_1","ADSiteName":"ASE"}}
< OData-Version: 4.0
< Duration: 867.3432
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:39 GMT
< 
* Connection #4 to host graph.microsoft.com left intact
OneDrive Response: {"@odata.context":"https:\/\/graph.microsoft.com\/v1.0\/$metadata#users('<redacted>')\/drive\/root\/$entity","cTag":"adDo2MzY2MkVFRUZCNjY2MkUxITEwNjkyLjYzNjcyODk5MDE2MTAwMDAwMA","eTag":"aNjM2NjJFRUVGQjY2NjJFMSExMDY5Mi4w","fileSystemInfo":{"createdDateTime":"2018-09-18T20:23:36.1Z","lastModifiedDateTime":"2018-09-18T20:23:36.1Z"},"folder":{"childCount":0,"view":{"sortBy":"takenOrCreatedDateTime","sortOrder":"ascending","viewType":"thumbnails"}},"id":"63662EEEFB6662E1!10692","name":"App_Data","parentReference":{"driveId":"63662eeefb6662e1","driveType":"personal","id":"63662EEEFB6662E1!10691","name":"GuessNumber","path":"\/drive\/root:\/Documents\/Programming\/C#\/Websites\/GuessNumber"}}
* Found bundle for host graph.microsoft.com: 0x1009960
* Re-using existing connection! (#4) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#4)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Content-Type: text/html
< Server: Microsoft-IIS/10.0
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:23:39 GMT
< Connection: close
< Content-Length: 1245
< 
* Closing connection 4
std.json.JSONException@std/json.d(1470): Unexpected character '<'. (Line 1:1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>404 - File or directory not found.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>404 - File or directory not found.</h2>
  <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
 </fieldset></div>
</div>
</body>
</html>

----------------
/home/alex/dlang/dmd-2.082.0/linux/bin64/../../src/phobos/std/json.d:740 pure @safe void std.json.parseJSON!(char[]).parseJSON(char[], int, std.json.JSONOptions).error(immutable(char)[]) [0x5acc38]
/home/alex/dlang/dmd-2.082.0/linux/bin64/../../src/phobos/std/json.d:1140 pure @safe void std.json.parseJSON!(char[]).parseJSON(char[], int, std.json.JSONOptions).parseValue(ref std.json.JSONValue) [0x5ada2e]
/home/alex/dlang/dmd-2.082.0/linux/bin64/../../src/phobos/std/json.d:1146 pure @safe std.json.JSONValue std.json.parseJSON!(char[]).parseJSON(char[], int, std.json.JSONOptions) [0x5acb9b]
src/onedrive.d:491 std.json.JSONValue onedrive.OneDriveApi.perform() [0x5ac389]
src/onedrive.d:326 std.json.JSONValue onedrive.OneDriveApi.get(const(char)[], bool) [0x5ab9d6]
src/onedrive.d:192 std.json.JSONValue onedrive.OneDriveApi.getPathDetails(const(immutable(char)[])) [0x5aadf3]
src/sync.d:1123 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x5ba0af]
src/sync.d:1064 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9bc5]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:1069 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x5b9c3c]
src/sync.d:796 void sync.SyncEngine.scanForDifferences(immutable(char)[]) [0x5b891d]
src/main.d:437 void main.performSync(sync.SyncEngine, immutable(char)[], bool, bool, bool) [0x59b533]
src/main.d:302 _Dmain [0x59adb1]

@abraunegg
Copy link
Author

abraunegg commented Sep 18, 2018

If I then login to onedrive.live.com & manually create the "PublishProfiles" directory so that the 'query check' should succeed, any file being uploaded gets the "same" nonsensical / non JSON response:

Uploading new items of .
* Found bundle for host graph.microsoft.com: 0x23196a0
* Re-using existing connection! (#4) with host graph.microsoft.com
* Connected to graph.microsoft.com (20.190.142.179) port 443 (#4)
> GET /v1.0/me/drive/root:/.%2FDocuments%2FProgramming%2FC%23%2FWebsites%2FGuessNumber%2FApp_Data%2FPublishProfiles%2Ffile.txt:/?select=id,name,eTag,cTag,deleted,file,folder,root,fileSystemInfo,remoteItem,parentReference HTTP/1.1
User-Agent: Phobos-std.net.curl/2.082 (libcurl/7.29.0)
Host: graph.microsoft.com
Accept: */*
Authorization: <redacted>

< HTTP/1.1 404 Not Found
< Content-Type: text/html
< Server: Microsoft-IIS/10.0
< Strict-Transport-Security: max-age=31536000
< Date: Tue, 18 Sep 2018 20:35:17 GMT
< Connection: close
< Content-Length: 1245
< 
* Closing connection 4
std.json.JSONException@std/json.d(1470): Unexpected character '<'. (Line 1:1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>404 - File or directory not found.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>404 - File or directory not found.</h2>
  <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3>
 </fieldset></div>
</div>
</body>
</html>

@ificator
Copy link
Contributor

ificator commented Sep 24, 2018

It looks like the call is failing in Graph - if you call api.onedrive.com with the same request you get back an expected JSON response. I'll follow up with them and see if there's a known issue.

@abraunegg
Copy link
Author

abraunegg commented Oct 16, 2018

@ificator
Any update on this issue - Have another instance of this affecting users, however this time the issue is failing with 'App_Code'

So there are 2 path's that fail query:

  • App_Data
  • App_Code

@abraunegg
Copy link
Author

@ificator
Any update on this issue?

@abraunegg
Copy link
Author

@ificator
Any update on this issue?

@abraunegg
Copy link
Author

@ificator, @chackman
Any update on this issue?

@chackman
Copy link
Contributor

chackman commented Nov 2, 2018

I contacted someone over in Graph for a status update (nothing beyond that to report, unfortunately).

@abraunegg
Copy link
Author

@ificator, @chackman
Any update on this issue?

@chackman
Copy link
Contributor

chackman commented Nov 9, 2018

Sorry, no update from Graph to share.

@chackman
Copy link
Contributor

Update from Graph: they have a fix starting to roll out, and it should take a few weeks to roll out.

@abraunegg
Copy link
Author

@chackman
Any update on this issue as to when MS Graph will roll out this fix? I have tested again and still failing for:

  • App_Data
  • App_Code

@abraunegg
Copy link
Author

abraunegg commented Dec 1, 2018

@chackman
Any update on this issue as to when MS Graph will roll out this fix? I have tested again and still failing for:

  • App_Data
  • App_Code

@chackman
Copy link
Contributor

chackman commented Dec 3, 2018

Thanks for your patience, we are still waiting on the fix from Graph to completely roll out.

@abraunegg
Copy link
Author

@chackman
It appears the changes have been rolled out. Validated & verified locally with OneDrive Personal & OneDrive Business accounts that this is no longer an issue and has been resolved.

@chackman
Copy link
Contributor

Thanks, I'll close this out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants